fix python imports

This commit is contained in:
Julien Aldon
2026-01-29 15:26:33 +01:00
parent 2e71732c7d
commit 73c1364c40
4 changed files with 9 additions and 14 deletions

View File

@@ -1,8 +1,8 @@
import pytest
from fastapi.testclient import TestClient
from unittest.mock import MagicMock, patch, ANY
from ..main import app, get_current_user
from ..database import get_db
from back.main import app, get_current_user
from back.database import get_db
def override_get_db():
mock_db = MagicMock()