diff options
Diffstat (limited to 'test/web/feed')
| -rw-r--r-- | test/web/feed/tag_controller_test.exs | 16 | 
1 files changed, 8 insertions, 8 deletions
diff --git a/test/web/feed/tag_controller_test.exs b/test/web/feed/tag_controller_test.exs index d95aac108..3c29cd94f 100644 --- a/test/web/feed/tag_controller_test.exs +++ b/test/web/feed/tag_controller_test.exs @@ -21,7 +21,7 @@ defmodule Pleroma.Web.Feed.TagControllerTest do      )      user = insert(:user) -    {:ok, activity1} = CommonAPI.post(user, %{"status" => "yeah #PleromaArt"}) +    {:ok, activity1} = CommonAPI.post(user, %{status: "yeah #PleromaArt"})      object = Object.normalize(activity1) @@ -43,9 +43,9 @@ defmodule Pleroma.Web.Feed.TagControllerTest do      |> Ecto.Changeset.change(data: object_data)      |> Pleroma.Repo.update() -    {:ok, activity2} = CommonAPI.post(user, %{"status" => "42 This is :moominmamma #PleromaArt"}) +    {:ok, activity2} = CommonAPI.post(user, %{status: "42 This is :moominmamma #PleromaArt"}) -    {:ok, _activity3} = CommonAPI.post(user, %{"status" => "This is :moominmamma"}) +    {:ok, _activity3} = CommonAPI.post(user, %{status: "This is :moominmamma"})      response =        conn @@ -88,7 +88,7 @@ defmodule Pleroma.Web.Feed.TagControllerTest do      )      user = insert(:user) -    {:ok, activity1} = CommonAPI.post(user, %{"status" => "yeah #PleromaArt"}) +    {:ok, activity1} = CommonAPI.post(user, %{status: "yeah #PleromaArt"})      object = Object.normalize(activity1) @@ -110,9 +110,9 @@ defmodule Pleroma.Web.Feed.TagControllerTest do      |> Ecto.Changeset.change(data: object_data)      |> Pleroma.Repo.update() -    {:ok, activity2} = CommonAPI.post(user, %{"status" => "42 This is :moominmamma #PleromaArt"}) +    {:ok, activity2} = CommonAPI.post(user, %{status: "42 This is :moominmamma #PleromaArt"}) -    {:ok, _activity3} = CommonAPI.post(user, %{"status" => "This is :moominmamma"}) +    {:ok, _activity3} = CommonAPI.post(user, %{status: "This is :moominmamma"})      response =        conn @@ -138,8 +138,8 @@ defmodule Pleroma.Web.Feed.TagControllerTest do             ]      assert xpath(xml, ~x"//channel/item/pubDate/text()"sl) == [ -             FeedView.pub_date(activity1.data["published"]), -             FeedView.pub_date(activity2.data["published"]) +             FeedView.pub_date(activity2.data["published"]), +             FeedView.pub_date(activity1.data["published"])             ]      assert xpath(xml, ~x"//channel/item/enclosure/@url"sl) == [  | 
