fix: do not retry rnf bad request

This commit is contained in:
simon lehericey 2024-03-29 12:20:04 +01:00
parent dd6c558541
commit 8405c83c12
No known key found for this signature in database
GPG key ID: CDE670D827C7B3C5
2 changed files with 13 additions and 0 deletions

View file

@ -72,6 +72,15 @@ describe Champs::RNFChamp, type: :model do
expect(subject.failure.reason).to be_a(API::Client::HTTPError)
}
end
context 'failure (http 400)' do
let(:status) { 400 }
let(:response_type) { 'invalid' }
it {
expect(subject.failure.retryable).to be_falsey
expect(subject.failure.reason).to be_a(API::Client::HTTPError)
}
end
end
describe 'for_export' do