fix(tests):

This commit is contained in:
Alexander Myasoedov
2025-02-14 11:44:24 +02:00
parent 4ef7473a56
commit b06eca4e84
4 changed files with 25 additions and 4 deletions
+1 -1
View File
@@ -64,7 +64,7 @@ async def scan_csv(
enableMultiStepAttack: bool = Query(False),
):
# TODO: content dataset to fuzzer
content = await file.read()
content = await file.read() # noqa
llm_spec = await llmSpec.read()
scan_parameters = Scan(
+2 -1
View File
@@ -1,6 +1,7 @@
from fastapi.testclient import TestClient
import agentic_security.test_spec_assets as test_spec_assets
from agentic_security.routes.scan import router
from fastapi.testclient import TestClient
client = TestClient(router)