aboutsummaryrefslogtreecommitdiff
path: root/test/web/activity_pub
diff options
context:
space:
mode:
authorkaniini <nenolod@gmail.com>2018-12-27 19:37:55 +0000
committerkaniini <nenolod@gmail.com>2018-12-27 19:37:55 +0000
commitbee6acd51dc4e84e44caecf9d123dfff2f640a38 (patch)
tree2436614e22c005e7417cd863301f8b27fd919704 /test/web/activity_pub
parentcff0292d4b32cf51de8ad15281c35d783b137dd2 (diff)
parent012b7ab5e64eae468c630730f392ea8289a5d874 (diff)
downloadpleroma-bee6acd51dc4e84e44caecf9d123dfff2f640a38.tar.gz
Merge branch 'feature/create-tombstone-instead-of-delete' into 'develop'
Create tombstone instead of object deletion See merge request pleroma/pleroma!593
Diffstat (limited to 'test/web/activity_pub')
-rw-r--r--test/web/activity_pub/activity_pub_test.exs2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/web/activity_pub/activity_pub_test.exs b/test/web/activity_pub/activity_pub_test.exs
index f7c66038d..7bccd7500 100644
--- a/test/web/activity_pub/activity_pub_test.exs
+++ b/test/web/activity_pub/activity_pub_test.exs
@@ -492,7 +492,7 @@ defmodule Pleroma.Web.ActivityPub.ActivityPubTest do
assert Repo.get(Activity, delete.id) != nil
- assert Repo.get(Object, object.id) == nil
+ assert Repo.get(Object, object.id).data["type"] == "Tombstone"
end
end