Browse Source

warning fix

add-assets-to-static-file-constants
Alexander Strizhakov 3 years ago
parent
commit
f85ed1c521
No known key found for this signature in database GPG Key ID: 22896A53AEF1381
1 changed files with 4 additions and 4 deletions
  1. +4
    -4
      test/pleroma/web/mastodon_api/controllers/status_controller_test.exs

+ 4
- 4
test/pleroma/web/mastodon_api/controllers/status_controller_test.exs View File

@@ -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


Loading…
Cancel
Save