diff options
Diffstat (limited to 'spec/requests/cards_controller')
-rw-r--r-- | spec/requests/cards_controller/update_spec.rb | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/spec/requests/cards_controller/update_spec.rb b/spec/requests/cards_controller/update_spec.rb index fdff170..013eba3 100644 --- a/spec/requests/cards_controller/update_spec.rb +++ b/spec/requests/cards_controller/update_spec.rb @@ -27,7 +27,8 @@ RSpec.describe 'PUT /api/account/addresses', type: :request do [new_card.number, new_card.expiration_year, new_card.expiration_month, new_card.expiration_day, new_card.security_code] end let(:wrong_params) do - { number: SecureRandom.hex(24), expiration_year: -20, expiration_month: 13, expiration_day: 33, security_code: ''} + { number: SecureRandom.hex(24), expiration_year: -20, expiration_month: 13, expiration_day: 33, + security_code: '' } end end -end
\ No newline at end of file +end |