Skip to content

Commit

Permalink
settling argument between rubocop and hound
Browse files Browse the repository at this point in the history
  • Loading branch information
npauzenga committed Nov 21, 2015
1 parent f3e99ea commit 175bf02
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions spec/controllers/user_confirmation_controller_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
let(:context) { double(:context, success?: true) }

before(:example) do
allow(ConfirmUserEmail).to receive(:call).with(arguments)
.and_return(context)
allow(ConfirmUserEmail).to receive(:call).with(arguments).
and_return(context)
end

context "when successful" do
Expand All @@ -33,8 +33,8 @@
let(:context) { double(:context, success?: false) }

before(:example) do
allow(ConfirmUserEmail).to receive(:call)
.and_return(context)
allow(ConfirmUserEmail).to receive(:call).
and_return(context)
end

it "redirects to root" do
Expand Down

0 comments on commit 175bf02

Please sign in to comment.