Remove some unused vars

This commit is contained in:
Sebastiaan
2025-06-09 15:50:59 +02:00
parent 7387dd7b40
commit fb0135cf38
2 changed files with 1 additions and 2 deletions

View File

@@ -101,7 +101,6 @@ def test_use_api_key_user_inactive(client: TestClient, db: Session) -> None:
api_key = ApiKey.create(session=db, create_obj=create_obj)
r = client.get(f"{settings.API_V1_STR}/login/api-key/{api_key.api_key}")
tokens = r.json()
assert r.status_code == 400

View File

@@ -127,7 +127,7 @@ def test_read_teams_with_normal_user(client: TestClient, normal_user_token_heade
def test_read_teams_with_event_user(client: TestClient, event_user_token_headers: EventUserHeader, db: Session) -> None:
team = create_random_team(db, event=event_user_token_headers.event)
create_random_team(db, event=event_user_token_headers.event)
response = client.get(
f"{settings.API_V1_STR}/teams/",