Skip to content

Commit

Permalink
Fix broken spec
Browse files Browse the repository at this point in the history
  • Loading branch information
jkowens authored Sep 4, 2020
1 parent c55b45d commit 32119ef
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sinatra-contrib/spec/quiet_logger_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

describe Sinatra::QuietLogger do

it 'logs just pathes not excluded' do
it 'logs just paths not excluded' do
log = StringIO.new
logger = Logger.new(log)
mock_app do
Expand All @@ -28,7 +28,7 @@
mock_app do
register Sinatra::QuietLogger
end
}.to output("You need to specify the pathes you wish to exclude from logging via `set :quiet_logger_prefixes, %w(images css fonts)`\n").to_stderr
}.to output("You need to specify the paths you wish to exclude from logging via `set :quiet_logger_prefixes, %w(images css fonts)`\n").to_stderr
end

end

0 comments on commit 32119ef

Please sign in to comment.