diff options
author | tusooa <tusooa@kazv.moe> | 2023-04-01 02:38:16 -0400 |
---|---|---|
committer | tusooa <tusooa@kazv.moe> | 2023-10-15 17:20:25 -0400 |
commit | 949c4f01c6d5686ff1852e6439616c2069557ef0 (patch) | |
tree | 2f4b714fcde8a5bc0bba533dac64cbcfdca553f2 | |
parent | 7f12ad6dccfe4c81fa7e0d4e66c43bedadbf4c6a (diff) | |
download | pleroma-949c4f01c6d5686ff1852e6439616c2069557ef0.tar.gz pleroma-949c4f01c6d5686ff1852e6439616c2069557ef0.zip |
Fix NotificationTest
-rw-r--r-- | test/pleroma/notification_test.exs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/pleroma/notification_test.exs b/test/pleroma/notification_test.exs index e55aa3a08..71af9acb8 100644 --- a/test/pleroma/notification_test.exs +++ b/test/pleroma/notification_test.exs @@ -252,7 +252,7 @@ defmodule Pleroma.NotificationTest do task = Task.async(fn -> {:ok, _topic} = Streamer.get_topic_and_add_socket("user", user, oauth_token) - assert_receive {:render_with_user, _, _, _}, 4_000 + assert_receive {:render_with_user, _, _, _, _}, 4_000 end) task_user_notification = @@ -260,7 +260,7 @@ defmodule Pleroma.NotificationTest do {:ok, _topic} = Streamer.get_topic_and_add_socket("user:notification", user, oauth_token) - assert_receive {:render_with_user, _, _, _}, 4_000 + assert_receive {:render_with_user, _, _, _, _}, 4_000 end) activity = insert(:note_activity) |