Commit d0fcd13e authored by Sean McGivern's avatar Sean McGivern

Don't log to STDOUT in specs

parent e37c39a2
...@@ -89,6 +89,7 @@ describe EmailsOnPushWorker do ...@@ -89,6 +89,7 @@ describe EmailsOnPushWorker do
before do before do
ActionMailer::Base.deliveries.clear ActionMailer::Base.deliveries.clear
allow(Notify).to receive(:repository_push_email).and_raise(Net::SMTPFatalError) allow(Notify).to receive(:repository_push_email).and_raise(Net::SMTPFatalError)
allow(subject).to receive_message_chain(:logger, :info)
perform perform
end end
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment