summaryrefslogtreecommitdiff
path: root/spec/support/shared_examples
diff options
context:
space:
mode:
Diffstat (limited to 'spec/support/shared_examples')
-rw-r--r--spec/support/shared_examples/requests/put_request.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/support/shared_examples/requests/put_request.rb b/spec/support/shared_examples/requests/put_request.rb
index a85d842..1b6c518 100644
--- a/spec/support/shared_examples/requests/put_request.rb
+++ b/spec/support/shared_examples/requests/put_request.rb
@@ -12,7 +12,7 @@ RSpec.shared_examples 'a PUT request' do |account: false|
context 'with incorrect parameters' do
it 'returns a client side error http status and an error message' do
put(route, params: wrong_params, headers:)
- expect(response).to have_http_status(desired_error_status)
+ expect(response).to have_http_status(422)
expect(response.body).to include_strings(expected_error_messages)
end
end