NotificationTest: Remove impossible case.
This commit is contained in:
parent
4d6316b488
commit
f214c2cdac
|
@ -859,22 +859,6 @@ test "repeating an activity which is already deleted does not generate a notific
|
||||||
assert Enum.empty?(Notification.for_user(user))
|
assert Enum.empty?(Notification.for_user(user))
|
||||||
end
|
end
|
||||||
|
|
||||||
test "replying to a deleted post without tagging does not generate a notification" do
|
|
||||||
user = insert(:user)
|
|
||||||
other_user = insert(:user)
|
|
||||||
|
|
||||||
{:ok, activity} = CommonAPI.post(user, %{status: "test post"})
|
|
||||||
{:ok, _deletion_activity} = CommonAPI.delete(activity.id, user)
|
|
||||||
|
|
||||||
{:ok, _reply_activity} =
|
|
||||||
CommonAPI.post(other_user, %{
|
|
||||||
status: "test reply",
|
|
||||||
in_reply_to_status_id: activity.id
|
|
||||||
})
|
|
||||||
|
|
||||||
assert Enum.empty?(Notification.for_user(user))
|
|
||||||
end
|
|
||||||
|
|
||||||
test "notifications are deleted if a local user is deleted" do
|
test "notifications are deleted if a local user is deleted" do
|
||||||
user = insert(:user)
|
user = insert(:user)
|
||||||
other_user = insert(:user)
|
other_user = insert(:user)
|
||||||
|
|
Loading…
Reference in New Issue