test(tokens-repo): shrink invalid new device test

deploy
Houkime 2023-01-04 16:42:50 +00:00
parent c7222fd8b9
commit a0bd3eb0ff
1 changed files with 2 additions and 12 deletions

View File

@ -330,19 +330,9 @@ def test_graphql_get_and_authorize_new_device(client, authorized_client, tokens_
def test_graphql_authorize_new_device_with_invalid_key(
client, authorized_client, tokens_file
):
response = client.post(
"/graphql",
json={
"query": AUTHORIZE_WITH_NEW_DEVICE_KEY_MUTATION,
"variables": {
"input": {
"key": "invalid_token",
"deviceName": "test_token",
}
},
},
)
response = graphql_try_auth_new_device(client, "invalid_token", "new_device")
assert_errorcode(response, "authorizeWithNewDeviceApiKey", 404)
assert_original(authorized_client)