diff options
Diffstat (limited to 'test')
| -rw-r--r-- | test/pleroma/web/activity_pub/activity_pub_test.exs | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/test/pleroma/web/activity_pub/activity_pub_test.exs b/test/pleroma/web/activity_pub/activity_pub_test.exs index f86d0a265..36fd65c76 100644 --- a/test/pleroma/web/activity_pub/activity_pub_test.exs +++ b/test/pleroma/web/activity_pub/activity_pub_test.exs @@ -217,8 +217,8 @@ defmodule Pleroma.Web.ActivityPub.ActivityPubTest do      {:ok, status_two} = CommonAPI.post(user, %{status: ". #essais"})      {:ok, status_three} = CommonAPI.post(user, %{status: ". #test #reject"}) -    for new_timeline_enabled <- [true, false] do -      clear_config([:instance, :improved_hashtag_timeline], new_timeline_enabled) +    for hashtag_timeline_strategy <- [true, :prefer_aggregation, :avoid_aggregation, false] do +      clear_config([:instance, :improved_hashtag_timeline], hashtag_timeline_strategy)        fetch_one = ActivityPub.fetch_activities([], %{type: "Create", tag: "test"}) | 
