diff options
author | Ivan Tashkinov <ivantashkinov@gmail.com> | 2021-03-03 23:09:30 +0300 |
---|---|---|
committer | Ivan Tashkinov <ivantashkinov@gmail.com> | 2021-03-03 23:09:30 +0300 |
commit | 5856f51717c12f4c6b0b89e480ff689c8480393d (patch) | |
tree | 25276838826ae8c7264cd5a8baf356eb478147a5 /test | |
parent | 882dd4684381a06395abd262363858011f06327d (diff) | |
download | pleroma-5856f51717c12f4c6b0b89e480ff689c8480393d.tar.gz pleroma-5856f51717c12f4c6b0b89e480ff689c8480393d.zip |
[#3213] ActivityPub hashtags filtering refactoring. Test fix.
Diffstat (limited to 'test')
-rw-r--r-- | test/pleroma/web/activity_pub/activity_pub_test.exs | 2 |
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 f92323abe..1e1e74074 100644 --- a/test/pleroma/web/activity_pub/activity_pub_test.exs +++ b/test/pleroma/web/activity_pub/activity_pub_test.exs @@ -220,7 +220,7 @@ defmodule Pleroma.Web.ActivityPub.ActivityPubTest do {:ok, status_four} = CommonAPI.post(user, %{status: ". #Any1 #any2"}) {:ok, status_five} = CommonAPI.post(user, %{status: ". #Any2 #any1"}) - for hashtag_timeline_strategy <- [:eanbled, :disabled] do + for hashtag_timeline_strategy <- [:enabled, :disabled] do clear_config([:features, :improved_hashtag_timeline], hashtag_timeline_strategy) fetch_one = ActivityPub.fetch_activities([], %{type: "Create", tag: "test"}) |