remove non-essential with() statement

This commit is contained in:
Jim Meyer 2015-04-18 23:36:12 -07:00
parent 269662d0f0
commit 4302604c89
1 changed files with 1 additions and 1 deletions

View File

@ -49,7 +49,7 @@ class TestLogAdapter < JekyllUnitTest
should "call #debug on writer return true" do
writer = LoggerDouble.new
logger = Jekyll::LogAdapter.new(writer)
allow(writer).to receive(:debug).with('Logging at level: '.rjust(20) + 'info').and_return(true)
allow(writer).to receive(:debug).and_return(true)
assert logger.adjust_verbosity
end
end