aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorIvan Tashkinov <ivantashkinov@gmail.com>2021-01-21 20:19:09 +0300
committerIvan Tashkinov <ivantashkinov@gmail.com>2021-01-21 20:23:08 +0300
commitc041e9c6300726a40a00146bba04d3ec752219d9 (patch)
tree249ec53f15747e797e972398d34372447f649415 /test
parent2634a16b4cefebfb2a13550bde3fd12e5acd9aaa (diff)
downloadpleroma-c041e9c6300726a40a00146bba04d3ec752219d9.tar.gz
[#3213] HashtagsTableMigrator: failures handling fix, retry function.
Changed default hashtags filtering strategy to non-aggregate approach.
Diffstat (limited to 'test')
-rw-r--r--test/pleroma/web/activity_pub/activity_pub_test.exs2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/pleroma/web/activity_pub/activity_pub_test.exs b/test/pleroma/web/activity_pub/activity_pub_test.exs
index 36fd65c76..1fcaf74d3 100644
--- a/test/pleroma/web/activity_pub/activity_pub_test.exs
+++ b/test/pleroma/web/activity_pub/activity_pub_test.exs
@@ -217,7 +217,7 @@ defmodule Pleroma.Web.ActivityPub.ActivityPubTest do
{:ok, status_two} = CommonAPI.post(user, %{status: ". #essais"})
{:ok, status_three} = CommonAPI.post(user, %{status: ". #test #reject"})
- for hashtag_timeline_strategy <- [true, :prefer_aggregation, :avoid_aggregation, false] do
+ for hashtag_timeline_strategy <- [true, :prefer_aggregation, false] do
clear_config([:instance, :improved_hashtag_timeline], hashtag_timeline_strategy)
fetch_one = ActivityPub.fetch_activities([], %{type: "Create", tag: "test"})