Web.MastodonAPI.MastodonAPIControllerTest: Update for difference between all and...
authorHaelwenn (lanodan) Monnier <contact@hacktivis.me>
Tue, 22 Jan 2019 14:42:46 +0000 (15:42 +0100)
committerHaelwenn (lanodan) Monnier <contact@hacktivis.me>
Sat, 26 Jan 2019 03:46:02 +0000 (04:46 +0100)
test/web/mastodon_api/mastodon_api_controller_test.exs

index b4870e0b2a198716c97e8c7dc6d911c512075ecb..3ca8d4651a93c602d916a5ab632e08751dbb00f9 100644 (file)
@@ -1048,12 +1048,12 @@ defmodule Pleroma.Web.MastodonAPI.MastodonAPIControllerTest 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 @@ defmodule Pleroma.Web.MastodonAPI.MastodonAPIControllerTest 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"]})