summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authortusooa <tusooa@kazv.moe>2023-07-12 23:29:23 -0400
committertusooa <tusooa@kazv.moe>2023-09-13 19:20:32 -0400
commit875b46d97d910ffd2c33ac26ed8dfe38f7672f52 (patch)
treea1dd5f2559f68ad93e13b855ade9854a08d0ed8f /test
parent87353e5ad12799d12507253fe9a0363fd9f0c817 (diff)
downloadpleroma-875b46d97d910ffd2c33ac26ed8dfe38f7672f52.tar.gz
pleroma-875b46d97d910ffd2c33ac26ed8dfe38f7672f52.zip
Do not mention original poster when quoting
Diffstat (limited to 'test')
-rw-r--r--test/pleroma/web/common_api_test.exs4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/pleroma/web/common_api_test.exs b/test/pleroma/web/common_api_test.exs
index 70a5b6fed..a98b16d4b 100644
--- a/test/pleroma/web/common_api_test.exs
+++ b/test/pleroma/web/common_api_test.exs
@@ -808,8 +808,8 @@ defmodule Pleroma.Web.CommonAPITest do
assert quote_post.data["quoteUrl"] == quoted.data["id"]
- # The OP is mentioned
- assert quoted.data["actor"] in quote_post.data["to"]
+ # The OP is not mentioned
+ refute quoted.data["actor"] in quote_post.data["to"]
end
test "quote posting with explicit addressing doesn't mention the OP" do