Missed tests

This commit is contained in:
Mark Felder 2020-10-13 16:15:28 -05:00
parent 09be8cb336
commit 8b20c4d275
2 changed files with 2 additions and 2 deletions

View File

@ -1271,7 +1271,7 @@ defmodule Pleroma.Web.MastodonAPI.AccountControllerTest do
"follow_requests_count" => 0,
"followers_count" => 0,
"following_count" => 0,
"locked" => false,
"is_locked" => false,
"note" => "",
"source" => %{
"fields" => [],

View File

@ -105,7 +105,7 @@ defmodule Pleroma.Web.MastodonAPI.UpdateCredentialsTest do
conn = patch(conn, "/api/v1/accounts/update_credentials", %{is_locked: "true"})
assert user_data = json_response_and_validate_schema(conn, 200)
assert user_data["locked"] == true
assert user_data["is_locked"] == true
end
test "updates the user's chat acceptance status", %{conn: conn} do