forked from AkkomaGang/akkoma
Web.MastodonAPI.MastodonAPIControllerTest: Update for difference between all and any parameters
This commit is contained in:
parent
5a84def6a6
commit
22f2687f17
1 changed files with 3 additions and 3 deletions
|
@ -1048,12 +1048,12 @@ test "multi-hashtag timeline", %{conn: conn} do
|
|||
user = insert(:user)
|
||||
|
||||
{:ok, activity_test} = CommonAPI.post(user, %{"status" => "#test"})
|
||||
{:ok, activity_test1} = CommonAPI.post(user, %{"status" => "#test1"})
|
||||
{:ok, activity_test1} = CommonAPI.post(user, %{"status" => "#test #test1"})
|
||||
{:ok, activity_none} = CommonAPI.post(user, %{"status" => "#test #none"})
|
||||
|
||||
any_test =
|
||||
conn
|
||||
|> get("/api/v1/timelines/tag/test", %{"any" => ["none"]})
|
||||
|> get("/api/v1/timelines/tag/test", %{"any" => ["test1"]})
|
||||
|
||||
[status_none, status_test1, status_test] = json_response(any_test, 200)
|
||||
|
||||
|
@ -1065,7 +1065,7 @@ test "multi-hashtag timeline", %{conn: conn} do
|
|||
conn
|
||||
|> get("/api/v1/timelines/tag/test", %{"all" => ["test1"], "none" => ["none"]})
|
||||
|
||||
assert [status_test1, status_test] == json_response(restricted_test, 200)
|
||||
assert [status_test1] == json_response(restricted_test, 200)
|
||||
|
||||
all_test = conn |> get("/api/v1/timelines/tag/test", %{"all" => ["none"]})
|
||||
|
||||
|
|
Loading…
Reference in a new issue