Let test raise connection error instead of returning 500

This commit is contained in:
Jeong Arm 2024-02-15 15:20:56 +09:00
parent ebb94eb7db
commit f6bbd046e9
1 changed files with 1 additions and 1 deletions

View File

@ -137,7 +137,7 @@ RSpec.describe ActivityPub::Activity::Create do
end
it 'ignores unprocessable mention', :aggregate_failures do
stub_request(:get, invalid_mention_json[:tag][:href]).to_return(status: 500)
stub_request(:get, invalid_mention_json[:tag][:href]).to_raise(HTTP::ConnectionError)
# When receiving the post that contains an invalid mention…
described_class.new(activity_for_object(invalid_mention_json), sender, delivery: true).perform