summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorRoger Braun <roger@rogerbraun.net>2017-10-31 19:44:36 +0100
committerRoger Braun <roger@rogerbraun.net>2017-10-31 19:44:36 +0100
commite014cc6ed8f98e20f5d64f1e666582c62de6321d (patch)
treee6035eab501a95227732ddd9359d56448cdaf6e9 /test
parentc877583a4fc872410b9d0202e7092b17666ba409 (diff)
downloadpleroma-e014cc6ed8f98e20f5d64f1e666582c62de6321d.tar.gz
pleroma-e014cc6ed8f98e20f5d64f1e666582c62de6321d.zip
Allow using cws in mastodon api.
Diffstat (limited to 'test')
-rw-r--r--test/web/mastodon_api/mastodon_api_controller_test.exs4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/web/mastodon_api/mastodon_api_controller_test.exs b/test/web/mastodon_api/mastodon_api_controller_test.exs
index 6569b8c45..cf09bc4b8 100644
--- a/test/web/mastodon_api/mastodon_api_controller_test.exs
+++ b/test/web/mastodon_api/mastodon_api_controller_test.exs
@@ -50,9 +50,9 @@ defmodule Pleroma.Web.MastodonAPI.MastodonAPIControllerTest do
conn = conn
|> assign(:user, user)
- |> post("/api/v1/statuses", %{"status" => "cofe"})
+ |> post("/api/v1/statuses", %{"status" => "cofe", "spoiler_text" => "2hu"})
- assert %{"content" => "cofe", "id" => id} = json_response(conn, 200)
+ assert %{"content" => "cofe", "id" => id, "spoiler_text" => "2hu"} = json_response(conn, 200)
assert Repo.get(Activity, id)
end