test+web: fix test suite and remove redundant privacy checkbox
All checks were successful
CI / test (push) Successful in 25s

This commit is contained in:
2026-03-08 12:16:21 +03:00
parent 79baadb522
commit fc7a9cc3a6
4 changed files with 7 additions and 19 deletions

View File

@@ -6,6 +6,7 @@ from app.auth.models import EmailVerificationToken
async def test_register_verify_login_and_me(client, db_session):
register_payload = {
"email": "alice@example.com",
"name": "Alice",
"username": "alice",
"password": "strongpass123",
}
@@ -46,6 +47,7 @@ async def test_register_verify_login_and_me(client, db_session):
async def test_refresh_token_rotation(client, db_session):
payload = {
"email": "bob@example.com",
"name": "Bob",
"username": "bob",
"password": "strongpass123",
}