fix(lint): remove trailing whitespace from blank lines in test files
Aegis CI / lint-and-test (push) Has been cancelled

This commit is contained in:
kitos
2026-06-12 11:00:42 +02:00
parent 9472fe91fa
commit 0e2e9d0bb0
2 changed files with 6 additions and 6 deletions
+2 -2
View File
@@ -37,7 +37,7 @@ def test_login_inactive_user(client, db):
"""Test login with inactive user returns 400."""
from app.auth import hash_password
from app.models.user import User
user = User(
username="inactive",
hashed_password=hash_password("password"),
@@ -46,7 +46,7 @@ def test_login_inactive_user(client, db):
)
db.add(user)
db.commit()
response = client.post(
"/api/v1/auth/login",
data={"username": "inactive", "password": "password"},