Update lint step

This commit is contained in:
Keannu Christian Bernasol 2025-09-13 21:11:30 +08:00
parent cae8e1c411
commit 2596ab7fc8
3 changed files with 5 additions and 3 deletions

View file

@ -21,7 +21,8 @@ def test_user_login():
for user in data["users"]:
login_response = client.post(
"/api/v1/accounts/jwt/create/",
{"username": user["username"], "password": config.DEBUG_USER_PASSWORD},
{"username": user["username"],
"password": config.DEBUG_USER_PASSWORD},
format="json",
).json()