Fix failing import test in test_agents.py

This commit is contained in:
Aymeric 2025-01-07 14:09:01 +01:00
parent 6b8467c546
commit 681758ae84
1 changed files with 1 additions and 1 deletions

View File

@ -360,7 +360,7 @@ class AgentTests(unittest.TestCase):
with console.capture() as capture:
agent.run("Count to 3")
str_output = capture.get()
assert "import under additional_authorized_imports" in str_output
assert "import under `additional_authorized_imports`" in str_output
def test_multiagents(self):
class FakeModelMultiagentsManagerAgent: