diff options
author | lain <lain@soykaf.club> | 2020-05-13 13:38:32 +0000 |
---|---|---|
committer | lain <lain@soykaf.club> | 2020-05-13 13:38:32 +0000 |
commit | da550be066a15108ceef7874c3b2549c049a7f88 (patch) | |
tree | 8b9f59c625da682d54c462ee31c125bd4e444814 /test/web/feed | |
parent | 6706cdce65f8b2dda55380dbfdad5e41e600af2d (diff) | |
parent | fbe3d3aa5fe07a89c52a16b7bf0626e323366597 (diff) | |
download | pleroma-da550be066a15108ceef7874c3b2549c049a7f88.tar.gz |
Merge branch 'fix/1742-random-failing-tests' into 'develop'
Fix sporadically failing tests
See merge request pleroma/pleroma!2524
Diffstat (limited to 'test/web/feed')
-rw-r--r-- | test/web/feed/tag_controller_test.exs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/web/feed/tag_controller_test.exs b/test/web/feed/tag_controller_test.exs index a54161bd4..3c29cd94f 100644 --- a/test/web/feed/tag_controller_test.exs +++ b/test/web/feed/tag_controller_test.exs @@ -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) == [ |