diff options
author | lain <lain@soykaf.club> | 2020-08-07 10:44:06 +0000 |
---|---|---|
committer | lain <lain@soykaf.club> | 2020-08-07 10:44:06 +0000 |
commit | 34cbe9f44a0266cd5ec652c3e70021ef928a7f31 (patch) | |
tree | c9ad17f8fd0718fd50ae7e489cbd0eaf7e5efcb0 /test/web/activity_pub/object_validators/delete_validation_test.exs | |
parent | b9ebb55d2aabdf4c99b05efab9d4ad31b25f888d (diff) | |
parent | 9d7ce1a6d014499eb4d55190b81e55da849b5ad0 (diff) | |
download | pleroma-34cbe9f44a0266cd5ec652c3e70021ef928a7f31.tar.gz pleroma-34cbe9f44a0266cd5ec652c3e70021ef928a7f31.zip |
Merge branch 'features/poll-validation' into 'develop'
Poll and votes pipeline ingestion
Closes #1362 and #1852
See merge request pleroma/pleroma!2635
Diffstat (limited to 'test/web/activity_pub/object_validators/delete_validation_test.exs')
-rw-r--r-- | test/web/activity_pub/object_validators/delete_validation_test.exs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/web/activity_pub/object_validators/delete_validation_test.exs b/test/web/activity_pub/object_validators/delete_validation_test.exs index 42cd18298..02683b899 100644 --- a/test/web/activity_pub/object_validators/delete_validation_test.exs +++ b/test/web/activity_pub/object_validators/delete_validation_test.exs @@ -87,7 +87,7 @@ defmodule Pleroma.Web.ActivityPub.ObjectValidators.DeleteValidationTest do {:error, cng} = ObjectValidator.validate(invalid_other_actor, []) - assert {:actor, {"is not allowed to delete object", []}} in cng.errors + assert {:actor, {"is not allowed to modify object", []}} in cng.errors end test "it's valid if the actor of the object is a local superuser", |