diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2017-08-14 02:29:36 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-08-14 02:29:36 +0200 |
commit | 4e75f0d88932511ad154773f4c77a485367ed36c (patch) | |
tree | 3b0656542633fc80ac7b657d8ee2694ca8bc2fdc /spec/services | |
parent | a2aeacbfeed5dc7070c37a22bb2c4bac1a58a526 (diff) |
Hook up URL-based resource look-up to ActivityPub (#4589)
Diffstat (limited to 'spec/services')
-rw-r--r-- | spec/services/process_feed_service_spec.rb | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/spec/services/process_feed_service_spec.rb b/spec/services/process_feed_service_spec.rb index 5e34370ee..aca675dc6 100644 --- a/spec/services/process_feed_service_spec.rb +++ b/spec/services/process_feed_service_spec.rb @@ -124,8 +124,7 @@ RSpec.describe ProcessFeedService do </entry> XML - stub_request(:head, 'https://overwatch.com/users/tracer/updates/1').to_return(status: 200, headers: { 'Content-Type' => 'application/atom+xml' }) - stub_request(:get, 'https://overwatch.com/users/tracer/updates/1').to_return(status: 200, body: real_body) + stub_request(:get, 'https://overwatch.com/users/tracer/updates/1').to_return(status: 200, body: real_body, headers: { 'Content-Type' => 'application/atom+xml' }) bad_actor = Fabricate(:account, username: 'sombra', domain: 'talon.xyz') @@ -168,7 +167,7 @@ XML end it 'ignores reblogs if it failed to retreive reblogged statuses' do - stub_request(:head, 'https://overwatch.com/users/tracer/updates/1').to_return(status: 404) + stub_request(:get, 'https://overwatch.com/users/tracer/updates/1').to_return(status: 404) actor = Fabricate(:account, username: 'tracer', domain: 'overwatch.com') |