almost all tests run now

This commit is contained in:
2026-05-18 21:03:47 +02:00
parent 1caffff30d
commit 56c8d38cde
4 changed files with 7 additions and 4 deletions

View File

@@ -20,7 +20,7 @@ def test_create_duplicate_group(client, auth_headers, test_group):
response = client.post("/groups/", json=group_data, headers=auth_headers)
# This should fail due to unique constraint
assert response.status_code == 422 # Validation error
assert response.status_code == 409 # Validation error
def test_get_groups(client, auth_headers, test_group):