Use expect syntax instead of should

This commit is contained in:
Rob Harrington
2017-09-11 17:37:36 +10:00
parent 61feb2b27d
commit 08c723b10f

View File

@@ -32,7 +32,7 @@ describe Admin::StripeAccountsController, type: :controller do
it "returns a 500 error" do
spree_get :connect_callback, params
response.status.should be 500
expect(response.status).to be 500
end
end