Merge branch 'improve-move-notificaions-api' into 'develop'
[akkoma] / test / web / mastodon_api / views / notification_view_test.exs
index 80b6d414cf178a5494b0fa209a6964ac0e502e3a..ba1721e06dd5b9ebf5ec884e5df9d0e9ffffc53e 100644 (file)
@@ -109,15 +109,18 @@ defmodule Pleroma.Web.MastodonAPI.NotificationViewTest do
   end
 
   test "Move notification" do
-    %{ap_id: old_ap_id} = old_user = insert(:user)
-    %{ap_id: _new_ap_id} = new_user = insert(:user, also_known_as: [old_ap_id])
+    old_user = insert(:user)
+    new_user = insert(:user, also_known_as: [old_user.ap_id])
     follower = insert(:user)
 
     User.follow(follower, old_user)
     Pleroma.Web.ActivityPub.ActivityPub.move(old_user, new_user)
     Pleroma.Tests.ObanHelpers.perform_all()
 
-    [notification] = Notification.for_user(follower)
+    old_user = refresh_record(old_user)
+    new_user = refresh_record(new_user)
+
+    [notification] = Notification.for_user(follower, %{with_move: true})
 
     expected = %{
       id: to_string(notification.id),