Skip to content

Commit

Permalink
fix failing test
Browse files Browse the repository at this point in the history
  • Loading branch information
codekansas committed Jan 7, 2025
1 parent 49dbbb6 commit b22912f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/routers/test_auth.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,5 +45,5 @@ async def test_profile_endpoint(test_client: TestClient) -> None:

@pytest.mark.asyncio
async def test_logout_endpoint(test_client: TestClient) -> None:
response = test_client.get("/auth/logout")
response = test_client.get("/auth/logout", headers={"Authorization": "Bearer test"})
assert response.status_code == status.HTTP_200_OK, response.text

0 comments on commit b22912f

Please sign in to comment.