diff options
Diffstat (limited to 'spec/requests/authentications_spec.rb')
-rw-r--r-- | spec/requests/authentications_spec.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/requests/authentications_spec.rb b/spec/requests/authentications_spec.rb index 71ffa19..3b1da3e 100644 --- a/spec/requests/authentications_spec.rb +++ b/spec/requests/authentications_spec.rb @@ -5,7 +5,7 @@ require 'rails_helper' RSpec.describe 'POST /api/authenticate', type: :request do it_behaves_like 'a POST request' do let(:route) { '/api/authenticate' } - let(:expected_error_message) { 'Credenciales incorrectas' } + let(:expected_error_messages) { ['Credenciales incorrectas'] } let(:desired_error_status) { 401 } let(:expected_text) { %w[token refresh] } let(:user) { create(:user_account) } |