Se correige el error de la importación de la API del modulo server pero surge un nuevo error.

This commit is contained in:
Mongar28
2024-11-07 10:39:56 -05:00
parent a22223541b
commit 4c63caa7d6
3 changed files with 8 additions and 8 deletions

View File

@@ -1,8 +1,8 @@
#!/usr/bin/env python3
from fastapi.testclient import TestClient
from ..server import app
from app.server import fa_app
client = TestClient(app)
client = TestClient(fa_app)
def test_process_text(mocker):