aboutsummaryrefslogtreecommitdiff
path: root/test/integration
diff options
context:
space:
mode:
authorlain <lain@soykaf.club>2020-05-13 09:34:30 +0000
committerlain <lain@soykaf.club>2020-05-13 09:34:30 +0000
commit156c8a508846bd6d4e55f666c4ecc6f0129ac5fc (patch)
tree971b1b30e5faec06b9971d1f08df20bc95ce8051 /test/integration
parent1307d6ca3ca4ebe1ad49ef5c018fb28c2eb44fee (diff)
parent79ad12064dfd31f135763bae1523a94c493b6aed (diff)
downloadpleroma-156c8a508846bd6d4e55f666c4ecc6f0129ac5fc.tar.gz
Merge branch 'openapi/statuses' into 'develop'
Add OpenAPI spec for StatusController See merge request pleroma/pleroma!2521
Diffstat (limited to 'test/integration')
-rw-r--r--test/integration/mastodon_websocket_test.exs2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/integration/mastodon_websocket_test.exs b/test/integration/mastodon_websocket_test.exs
index f61150cd2..ea17e9feb 100644
--- a/test/integration/mastodon_websocket_test.exs
+++ b/test/integration/mastodon_websocket_test.exs
@@ -55,7 +55,7 @@ defmodule Pleroma.Integration.MastodonWebsocketTest do
test "receives well formatted events" do
user = insert(:user)
{:ok, _} = start_socket("?stream=public")
- {:ok, activity} = CommonAPI.post(user, %{"status" => "nice echo chamber"})
+ {:ok, activity} = CommonAPI.post(user, %{status: "nice echo chamber"})
assert_receive {:text, raw_json}, 1_000
assert {:ok, json} = Jason.decode(raw_json)