diff options
author | Mark Felder <feld@FreeBSD.org> | 2020-10-13 09:31:13 -0500 |
---|---|---|
committer | Mark Felder <feld@FreeBSD.org> | 2020-10-13 09:31:13 -0500 |
commit | 9968b7efedc64d0239db5578de7fc66ff4ce894d (patch) | |
tree | 3ce12279bae5c871f957c218daf7e897cc1bbdb8 /test/web/activity_pub/activity_pub_test.exs | |
parent | eea879eb362d3310d4fe047fb6412b69dd8711fe (diff) | |
download | pleroma-9968b7efedc64d0239db5578de7fc66ff4ce894d.tar.gz pleroma-9968b7efedc64d0239db5578de7fc66ff4ce894d.zip |
Change user.locked field to user.is_locked
Diffstat (limited to 'test/web/activity_pub/activity_pub_test.exs')
-rw-r--r-- | test/web/activity_pub/activity_pub_test.exs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/web/activity_pub/activity_pub_test.exs b/test/web/activity_pub/activity_pub_test.exs index 804305a13..3efc0d1b4 100644 --- a/test/web/activity_pub/activity_pub_test.exs +++ b/test/web/activity_pub/activity_pub_test.exs @@ -1120,7 +1120,7 @@ defmodule Pleroma.Web.ActivityPub.ActivityPubTest do test "creates an undo activity for a pending follow request" do follower = insert(:user) - followed = insert(:user, %{locked: true}) + followed = insert(:user, %{is_locked: true}) {:ok, _, _, follow_activity} = CommonAPI.follow(follower, followed) {:ok, activity} = ActivityPub.unfollow(follower, followed) |