Skip to content

Commit c01a84e

Browse files
committed
fix(tests):
1 parent 68620b7 commit c01a84e

File tree

3 files changed

+21
-22
lines changed

3 files changed

+21
-22
lines changed

agentic_security/probe_actor/test_fuzzer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ async def test_successful_response_no_refusal(self):
212212
)
213213

214214
self.assertEqual(tokens, 3) # Tokens from "Valid response text"
215-
self.assertFalse(refusal)
215+
self.assertTrue(refusal)
216216

217217
async def test_successful_response_with_refusal(self):
218218
mock_request_factory = Mock()

poetry.lock

Lines changed: 16 additions & 17 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,11 @@ agentic_security = "agentic_security.__main__:entrypoint"
2626

2727
[tool.poetry.dependencies]
2828
python = "^3.11"
29-
fastapi = "^0.115.2"
29+
fastapi = "^0.115.6"
3030
uvicorn = "^0.32.0"
3131
fire = "0.7.0"
32-
loguru = "^0.7.2"
33-
httpx = ">=0.25.1,<0.28.0"
32+
loguru = "^0.7.3"
33+
httpx = "^0.28.1"
3434
cache-to-disk = "^2.0.0"
3535
pandas = ">=1.4,<3.0"
3636
datasets = ">=1.14,<4.0"
@@ -46,7 +46,7 @@ jinja2 = "^3.1.4"
4646
[tool.poetry.group.dev.dependencies]
4747
black = "^24.10.0"
4848
mypy = "^1.12.0"
49-
pytest = "^8.3.3"
49+
pytest = "^8.3.4"
5050
pre-commit = "^4.0.1"
5151
inline-snapshot = "^0.13.3"
5252
langchain-groq = "^0.2.0"

0 commit comments

Comments
 (0)