chore: sync uncommitted working tree changes before clone cleanup
This commit is contained in:
+3
-3
@@ -3,9 +3,7 @@
|
||||
from __future__ import annotations
|
||||
|
||||
import time
|
||||
from datetime import timedelta
|
||||
|
||||
import pytest
|
||||
from httpx import AsyncClient
|
||||
from jose import jwt
|
||||
|
||||
@@ -203,6 +201,7 @@ async def test_db_user_has_hashed_password(
|
||||
) -> None:
|
||||
"""AC: DB-User wird mit gehashtem password_hash angelegt (kein Klartext)."""
|
||||
from sqlalchemy import select
|
||||
|
||||
from app.models.user import User
|
||||
|
||||
async with session_factory() as session:
|
||||
@@ -228,7 +227,8 @@ async def test_no_default_admin_on_startup(
|
||||
client: AsyncClient, session_factory
|
||||
) -> None:
|
||||
"""AC: KEIN admin/admin Bootstrap-User beim App-Start (Frisch-DB = leer)."""
|
||||
from sqlalchemy import select, func
|
||||
from sqlalchemy import func, select
|
||||
|
||||
from app.models.user import User
|
||||
|
||||
# Fresh DB → no users
|
||||
|
||||
Reference in New Issue
Block a user