diff options
author | lain <lain@soykaf.club> | 2021-02-28 16:53:05 +0000 |
---|---|---|
committer | lain <lain@soykaf.club> | 2021-02-28 16:53:05 +0000 |
commit | e8d88a72cf6633444f9056807f6e048c66cf952d (patch) | |
tree | 62db6ea8bcae2fb494bb699a53009bc4f57c6e8e | |
parent | 4a9d3a1f28bb89d534a859562a5209543650de9c (diff) | |
parent | f85ed1c521cf36a50f3758db99e23e5f4c1492d7 (diff) | |
download | pleroma-e8d88a72cf6633444f9056807f6e048c66cf952d.tar.gz |
Merge branch 'fix/warning-in-test' into 'develop'
warning fix
See merge request pleroma/pleroma!3350
-rw-r--r-- | test/pleroma/web/mastodon_api/controllers/status_controller_test.exs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/pleroma/web/mastodon_api/controllers/status_controller_test.exs b/test/pleroma/web/mastodon_api/controllers/status_controller_test.exs index dd2f306b7..bd385bccd 100644 --- a/test/pleroma/web/mastodon_api/controllers/status_controller_test.exs +++ b/test/pleroma/web/mastodon_api/controllers/status_controller_test.exs @@ -364,8 +364,8 @@ defmodule Pleroma.Web.MastodonAPI.StatusControllerTest do %Pleroma.Web.OAuth.Token{ app: %Pleroma.Web.OAuth.App{ - client_name: _app_name, - website: _app_website + client_name: app_name, + website: app_website } } = token @@ -379,8 +379,8 @@ defmodule Pleroma.Web.MastodonAPI.StatusControllerTest do assert %{ "content" => "cofe is my copilot", "application" => %{ - "name" => app_name, - "website" => app_website + "name" => ^app_name, + "website" => ^app_website } } = json_response_and_validate_schema(result, 200) end |