Skip to content

Commit

Permalink
fastapi-migration: Remove extraneous print in test authentication
Browse files Browse the repository at this point in the history
  • Loading branch information
paulespinosa committed Sep 29, 2024
1 parent c457588 commit c71337e
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions backend/tests/integration/test_authentication.py
Original file line number Diff line number Diff line change
Expand Up @@ -345,11 +345,6 @@ def test_session_endpoint(client, api_settings, cognito_client):
jwt = create_and_signin_user(client, api_settings, cognito_client, EMAIL,
PASSWORD)

import jwt as j
print(
j.decode(client.cookies["id_token"],
algorithms=["RS256"],
options={"verify_signature": False}))
response = client.get(PATH + '/session',
headers={"Authorization": f"Bearer {jwt}"})

Expand Down

0 comments on commit c71337e

Please sign in to comment.