This commit is contained in:
2025-02-07 20:54:55 -05:00
parent dc47eced14
commit 78eafc739e
18 changed files with 60 additions and 60 deletions

View File

@@ -2,7 +2,7 @@ from fastapi.testclient import TestClient
from fastapi import BackgroundTasks
import pytest
import os
from main import app
from app.main import app

View File

@@ -4,9 +4,9 @@ import pytest
from unittest.mock import Mock, patch
import asyncio
import os
from main import app
from services.file import FileService
from services.task import TaskService
from app.main import app
from app.services.file import FileService
from app.services.task import TaskService
client = TestClient(app)