diff options
| author | Roger Braun <roger@rogerbraun.net> | 2017-09-12 13:31:17 +0200 | 
|---|---|---|
| committer | Roger Braun <roger@rogerbraun.net> | 2017-09-12 13:31:17 +0200 | 
| commit | 1bc58230ee16e6a6a809de85c31eb6f0841b16b3 (patch) | |
| tree | a744633a80f93640d504e0adeb06deba6f735eae /test/web | |
| parent | 7331733d30ff69d657df9a06d923353ffaff5228 (diff) | |
| download | pleroma-1bc58230ee16e6a6a809de85c31eb6f0841b16b3.tar.gz pleroma-1bc58230ee16e6a6a809de85c31eb6f0841b16b3.zip  | |
Remove milliseconds from mastodon api response.
Diffstat (limited to 'test/web')
| -rw-r--r-- | test/web/mastodon_api/status_view_test.exs | 5 | 
1 files changed, 4 insertions, 1 deletions
diff --git a/test/web/mastodon_api/status_view_test.exs b/test/web/mastodon_api/status_view_test.exs index 2eb27009b..3c2de4cbe 100644 --- a/test/web/mastodon_api/status_view_test.exs +++ b/test/web/mastodon_api/status_view_test.exs @@ -12,6 +12,9 @@ defmodule Pleroma.Web.MastodonAPI.StatusViewTest do      status = StatusView.render("status.json", %{activity: note}) +    created_at = (note.data["object"]["published"] || "") +    |> String.replace(~r/\.\d+/, "") +      expected = %{        id: note.id,        uri: note.data["object"]["id"], @@ -21,7 +24,7 @@ defmodule Pleroma.Web.MastodonAPI.StatusViewTest do        in_reply_to_account_id: nil,        reblog: nil,        content: HtmlSanitizeEx.basic_html(note.data["object"]["content"]), -      created_at: note.data["object"]["published"], +      created_at: created_at,        reblogs_count: 0,        favourites_count: 0,        reblogged: false,  | 
