removing with_move parameter

This commit is contained in:
Alexander Strizhakov 2020-03-16 20:05:21 +03:00
commit f3791add99
No known key found for this signature in database
GPG key ID: 022896A53AEF1381
8 changed files with 16 additions and 34 deletions

View file

@ -1955,11 +1955,9 @@ defmodule Pleroma.Web.ActivityPub.ActivityPubTest do
activity = %Activity{activity | object: nil}
assert [%Notification{activity: ^activity}] =
Notification.for_user(follower, %{with_move: true})
assert [%Notification{activity: ^activity}] = Notification.for_user(follower)
assert [%Notification{activity: ^activity}] =
Notification.for_user(follower_move_opted_out, %{with_move: true})
assert [%Notification{activity: ^activity}] = Notification.for_user(follower_move_opted_out)
end
test "old user must be in the new user's `also_known_as` list" do