Skip to content

Commit 0dccaf2

Browse files
committed
linting
1 parent 76a3811 commit 0dccaf2

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

backend/tests/conftest.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
from sqlalchemy import create_engine
44
from sqlalchemy.orm import sessionmaker
55
from sqlalchemy.pool import StaticPool
6+
from app.middleware.auth_middleware import AuthMiddleware
7+
68

79
from app.models import Base
810
from app.server import app
@@ -56,7 +58,6 @@ def auth_headers():
5658
@pytest.fixture(scope="function")
5759
def mock_auth_middleware(monkeypatch):
5860
"""Mock the auth middleware to bypass Firebase authentication"""
59-
from app.middleware.auth_middleware import AuthMiddleware
6061

6162
async def mock_dispatch(self, request, call_next):
6263
# Mock user data that would normally come from Firebase

0 commit comments

Comments
 (0)