1
0
mirror of https://github.com/meineerde/rackstash.git synced 2025-10-17 14:01:01 +00:00

Remove useless variable assignment in logger spec

This commit is contained in:
Holger Just 2017-07-20 22:49:03 +02:00
parent 67955f8629
commit d9ea199d4f

View File

@ -16,7 +16,7 @@ describe Rackstash::Logger do
describe '#initialize' do
it 'requires flows' do
expect(Rackstash::Sink).to receive(:new).with('output.log')
logger = described_class.new('output.log')
described_class.new('output.log')
end
it 'allows to set #level' do