Update stoplight to version 5.4.0 (#36581)

This commit is contained in:
Matt Jankowski 2025-10-27 05:38:01 -04:00 committed by GitHub
parent 1ba579b0a1
commit 2640cf5317
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View file

@ -32,7 +32,7 @@ RSpec.describe Api::ErrorHandling do
Mastodon::ValidationError => 422,
OpenSSL::SSL::SSLError => 503,
Seahorse::Client::NetworkingError => 503,
Stoplight::Error::RedLight => 503,
Stoplight::Error::RedLight.new(:name, cool_off_time: 1, retry_after: 1) => 503,
}.each do |error, code|
it "Handles error class of #{error}" do
allow(FakeService)