Skip to content

Commit

Permalink
Fix == used in void context
Browse files Browse the repository at this point in the history
  • Loading branch information
jhawthorn committed Feb 16, 2016
1 parent 055499c commit 5f659c0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@

it 'messages and redirects' do
subject
expect(flash[:error]) == order.errors.full_messages
expect(flash[:error]).to eq order.errors.full_messages
expect(response).to redirect_to(spree.confirm_admin_order_path(order))
end
end
Expand Down

0 comments on commit 5f659c0

Please sign in to comment.