aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIvan Tashkinov <ivantashkinov@gmail.com>2019-01-21 14:30:01 +0300
committerIvan Tashkinov <ivantashkinov@gmail.com>2019-01-21 14:30:01 +0300
commit789a9843da0eef1e5426ab6558f1adf24231ce02 (patch)
treece051fc4bc1879a918e588b9ee9b0200a3a89acc
parentaa480f4a8b46f24a07491228462b4318ca25eda7 (diff)
downloadpleroma-789a9843da0eef1e5426ab6558f1adf24231ce02.tar.gz
[#530] Fixed test.
-rw-r--r--test/integration/mastodon_websocket_test.exs3
1 files changed, 0 insertions, 3 deletions
diff --git a/test/integration/mastodon_websocket_test.exs b/test/integration/mastodon_websocket_test.exs
index 03aabf12c..2e385f5ad 100644
--- a/test/integration/mastodon_websocket_test.exs
+++ b/test/integration/mastodon_websocket_test.exs
@@ -66,13 +66,10 @@ defmodule Pleroma.Integration.MastodonWebsocketTest do
assert json["payload"]
assert {:ok, json} = Jason.decode(json["payload"])
- # Note: we remove the "statuses_count" from this result as it changes in the meantime
-
view_json =
Pleroma.Web.MastodonAPI.StatusView.render("status.json", activity: activity, for: nil)
|> Jason.encode!()
|> Jason.decode!()
- |> put_in(["account", "statuses_count"], 0)
assert json == view_json
end