summaryrefslogtreecommitdiff
path: root/test/notification_test.exs
diff options
context:
space:
mode:
authorEgor Kislitsyn <egor@kislitsyn.com>2019-04-25 13:41:10 +0700
committerEgor Kislitsyn <egor@kislitsyn.com>2019-04-25 13:41:10 +0700
commitc157e27a000a12dc8f660c056744a6611beb01b1 (patch)
tree36ae4721a1cb92983c7a8fed41b737e0a5a57486 /test/notification_test.exs
parente8c2f9a73a37636a9a8ed5c2998617b841f482da (diff)
parent3789945784a331790d73f69b407751df9f7d6e8f (diff)
downloadpleroma-c157e27a000a12dc8f660c056744a6611beb01b1.tar.gz
pleroma-c157e27a000a12dc8f660c056744a6611beb01b1.zip
Merge branch 'develop' into feature/disable-account
Diffstat (limited to 'test/notification_test.exs')
-rw-r--r--test/notification_test.exs4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/notification_test.exs b/test/notification_test.exs
index c3db77b6c..581db58a8 100644
--- a/test/notification_test.exs
+++ b/test/notification_test.exs
@@ -46,7 +46,7 @@ defmodule Pleroma.NotificationTest do
describe "create_notification" do
test "it doesn't create a notification for user if the user blocks the activity author" do
activity = insert(:note_activity)
- author = User.get_by_ap_id(activity.data["actor"])
+ author = User.get_cached_by_ap_id(activity.data["actor"])
user = insert(:user)
{:ok, user} = User.block(user, author)
@@ -124,7 +124,7 @@ defmodule Pleroma.NotificationTest do
test "it doesn't create a notification for user if he is the activity author" do
activity = insert(:note_activity)
- author = User.get_by_ap_id(activity.data["actor"])
+ author = User.get_cached_by_ap_id(activity.data["actor"])
assert nil == Notification.create_notification(activity, author)
end