warning fix

This commit is contained in:
Alexander Strizhakov 2021-02-28 19:41:25 +03:00
parent 6a71aa535b
commit f85ed1c521
No known key found for this signature in database
GPG Key ID: 022896A53AEF1381
1 changed files with 4 additions and 4 deletions

View File

@ -364,8 +364,8 @@ test "discloses application metadata when enabled" 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 @@ test "discloses application metadata when enabled" 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