X-Git-Url: http://git.squeep.com/?a=blobdiff_plain;f=test%2Fnotification_test.exs;h=eec0a48292ccb382aa587c32775cc909fe6715cb;hb=0f0cc2703b7ffb99c58e72782925ea4dd61db41d;hp=462398d7512bd05bde046e298a9981ab531e764c;hpb=60f213bb1a6b1627cd8f6bf2903a42c3f3827f1a;p=akkoma diff --git a/test/notification_test.exs b/test/notification_test.exs index 462398d75..eec0a4829 100644 --- a/test/notification_test.exs +++ b/test/notification_test.exs @@ -48,7 +48,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) @@ -126,7 +126,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 @@ -335,7 +335,7 @@ defmodule Pleroma.NotificationTest do recent_notifications_ids = user2 |> Notification.for_user_since( - NaiveDateTime.add(NaiveDateTime.utc_now(), -5 * 86400, :second) + NaiveDateTime.add(NaiveDateTime.utc_now(), -5 * 86_400, :second) ) |> Enum.map(& &1.id)