diff options
author | Maxim Filippov <colixer@gmail.com> | 2018-12-24 20:09:18 +0300 |
---|---|---|
committer | Maxim Filippov <colixer@gmail.com> | 2018-12-24 20:09:18 +0300 |
commit | 18a4cbb244dbc188f5a391626fb98e3a53571318 (patch) | |
tree | 74e4932a15a71e3bdacc3d869bf3115010ce687e /test/web/mastodon_api | |
parent | 0f412cf6e68fcebda3e94b71b7f182af689748bf (diff) | |
download | pleroma-18a4cbb244dbc188f5a391626fb98e3a53571318.tar.gz pleroma-18a4cbb244dbc188f5a391626fb98e3a53571318.zip |
Capitalize "tombstone"
Diffstat (limited to 'test/web/mastodon_api')
-rw-r--r-- | test/web/mastodon_api/mastodon_api_controller_test.exs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/web/mastodon_api/mastodon_api_controller_test.exs b/test/web/mastodon_api/mastodon_api_controller_test.exs index 6c6cc2a00..f1baa9953 100644 --- a/test/web/mastodon_api/mastodon_api_controller_test.exs +++ b/test/web/mastodon_api/mastodon_api_controller_test.exs @@ -292,7 +292,7 @@ defmodule Pleroma.Web.MastodonAPI.MastodonAPIControllerTest do assert %{} = json_response(conn, 200) - assert Repo.get(Activity, activity.id).data["type"] == "tombstone" + assert Repo.get(Activity, activity.id).data["type"] == "Tombstone" end test "when you didn't create it", %{conn: conn} do |