From c3e5e65093b3e6237c8dc1a831900a7b910681f0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebasti=C3=A1n=20Ram=C3=ADrez?= Date: Fri, 28 Dec 2018 16:11:45 +0400 Subject: [PATCH] :art: Fix missing format --- docs/src/security/tutorial003.py | 2 +- tests/test_tutorial/test_security/test_tutorial003.py | 6 +++++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/docs/src/security/tutorial003.py b/docs/src/security/tutorial003.py index d18330e9e..32db02a07 100644 --- a/docs/src/security/tutorial003.py +++ b/docs/src/security/tutorial003.py @@ -17,7 +17,7 @@ fake_users_db = { "email": "alice@example.com", "hashed_password": "fakehashedsecret2", "disabled": True, - } + }, } app = FastAPI() diff --git a/tests/test_tutorial/test_security/test_tutorial003.py b/tests/test_tutorial/test_security/test_tutorial003.py index 248fa0ef0..ddfdf0ee2 100644 --- a/tests/test_tutorial/test_security/test_tutorial003.py +++ b/tests/test_tutorial/test_security/test_tutorial003.py @@ -120,7 +120,9 @@ def test_login(): def test_login_incorrect_password(): - response = client.post("/token", data={"username": "johndoe", "password": "incorrect"}) + response = client.post( + "/token", data={"username": "johndoe", "password": "incorrect"} + ) assert response.status_code == 400 assert response.json() == {"detail": "Incorrect username or password"} @@ -154,6 +156,7 @@ def test_incorrect_token(): assert response.status_code == 400 assert response.json() == {"detail": "Invalid authentication credentials"} + def test_incorrect_token_type(): response = client.get( "/users/me", headers={"Authorization": "Notexistent testtoken"} @@ -161,6 +164,7 @@ def test_incorrect_token_type(): assert response.status_code == 403 assert response.json() == {"detail": "Not authenticated"} + def test_inactive_user(): response = client.get("/users/me", headers={"Authorization": "Bearer alice"}) assert response.status_code == 400