fix: update test imports from auth to auth_service
Deploy Dashboard (Dev) / deploy-dev (push) Failing after 1m42s
Run Tests / Backend Tests (push) Has started running
Run Tests / Frontend Tests (push) Has been cancelled
Run Tests / Test Summary (push) Has been cancelled

This commit is contained in:
Gan, Jimmy
2026-04-02 09:12:48 +08:00
parent a4782ecb1c
commit e1fc23981f
5 changed files with 9 additions and 9 deletions
@@ -4,7 +4,7 @@ Integration tests for authentication flow.
import pytest
import pyotp
from fastapi import status
from auth import get_password_hash, save_totp_secret, save_password_hash
from auth_service import get_password_hash, save_totp_secret, save_password_hash
class TestLoginFlow: