Merge branch 'fix/warning-in-test' into 'develop'

warning fix

See merge request pleroma/pleroma!3350
This commit is contained in:
lain 2021-02-28 16:53:05 +00:00
commit e8d88a72cf
1 changed files with 4 additions and 4 deletions

View File

@ -364,8 +364,8 @@ defmodule Pleroma.Web.MastodonAPI.StatusControllerTest do
%Pleroma.Web.OAuth.Token{ %Pleroma.Web.OAuth.Token{
app: %Pleroma.Web.OAuth.App{ app: %Pleroma.Web.OAuth.App{
client_name: _app_name, client_name: app_name,
website: _app_website website: app_website
} }
} = token } = token
@ -379,8 +379,8 @@ defmodule Pleroma.Web.MastodonAPI.StatusControllerTest do
assert %{ assert %{
"content" => "cofe is my copilot", "content" => "cofe is my copilot",
"application" => %{ "application" => %{
"name" => app_name, "name" => ^app_name,
"website" => app_website "website" => ^app_website
} }
} = json_response_and_validate_schema(result, 200) } = json_response_and_validate_schema(result, 200)
end end