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

@@ -31,7 +31,7 @@ def test_create_user_unauthorized(client):
}
response = client.post("/users/", json=user_data)
assert response.status_code == 403
assert response.status_code == 401
def test_get_users(client, auth_headers, admin_user, regular_user):