diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2021-05-07 14:33:19 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-07 14:33:19 +0200 |
commit | 2c77d97e0d59e045a9b04fccc83f0f24d190d8d8 (patch) | |
tree | 8c9722562a0621416968fbb9a30f6b248032f604 /spec/lib | |
parent | b42a8ef7d95f84818c445310886dcec0bbeda890 (diff) |
Add joined date to profiles in web UI (#16169)
Diffstat (limited to 'spec/lib')
-rw-r--r-- | spec/lib/activitypub/activity/update_spec.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/lib/activitypub/activity/update_spec.rb b/spec/lib/activitypub/activity/update_spec.rb index 42da29860..1c9bcf43b 100644 --- a/spec/lib/activitypub/activity/update_spec.rb +++ b/spec/lib/activitypub/activity/update_spec.rb @@ -13,7 +13,7 @@ RSpec.describe ActivityPub::Activity::Update do end let(:modified_sender) do - sender.dup.tap do |modified_sender| + sender.tap do |modified_sender| modified_sender.display_name = 'Totally modified now' end end |