about summary refs log tree commit diff
path: root/spec/services/activitypub/process_account_service_spec.rb
diff options
context:
space:
mode:
authorMIYAGI Hikaru <hcmiya@users.noreply.github.com>2018-04-25 21:12:28 +0900
committerEugen Rochko <eugen@zeonfederated.com>2018-04-25 14:12:28 +0200
commiteb593a5a0c9ee9749115f867a5675ceb1f231379 (patch)
tree1ee3d2b3d9da81b9feb052ab7b6bec81600e3374 /spec/services/activitypub/process_account_service_spec.rb
parentf58dcbc9814b5ba2fd4f7d7af643aa25dcf40594 (diff)
Append '.test' to hostname in stub data (#7260)
Diffstat (limited to 'spec/services/activitypub/process_account_service_spec.rb')
-rw-r--r--spec/services/activitypub/process_account_service_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/services/activitypub/process_account_service_spec.rb b/spec/services/activitypub/process_account_service_spec.rb
index 15e1f4bb2..d67d72acb 100644
--- a/spec/services/activitypub/process_account_service_spec.rb
+++ b/spec/services/activitypub/process_account_service_spec.rb
@@ -6,9 +6,9 @@ RSpec.describe ActivityPub::ProcessAccountService do
   context 'property values' do
     let(:payload) do
       {
-        id: 'https://foo',
+        id: 'https://foo.test',
         type: 'Actor',
-        inbox: 'https://foo/inbox',
+        inbox: 'https://foo.test/inbox',
         attachment: [
           { type: 'PropertyValue', name: 'Pronouns', value: 'They/them' },
           { type: 'PropertyValue', name: 'Occupation', value: 'Unit test' },