diff --git a/tests/test_auth.py b/tests/test_auth.py index efa0ae6..819a385 100644 --- a/tests/test_auth.py +++ b/tests/test_auth.py @@ -505,6 +505,7 @@ def test_generate_recovery_token_with_limited_uses( assert read_json(tokens_file)["recovery_token"]["uses_left"] == 0 + def test_generate_recovery_token_with_negative_uses( authorized_client, client, tokens_file ): @@ -516,9 +517,8 @@ def test_generate_recovery_token_with_negative_uses( assert response.status_code == 400 assert "recovery_token" not in read_json(tokens_file) -def test_generate_recovery_token_with_zero_uses( - authorized_client, client, tokens_file -): + +def test_generate_recovery_token_with_zero_uses(authorized_client, client, tokens_file): # Generate token with limited uses response = authorized_client.post( "/auth/recovery_token",