From 681758ae84a8075038dc676d8af7262077bd00c3 Mon Sep 17 00:00:00 2001 From: Aymeric Date: Tue, 7 Jan 2025 14:09:01 +0100 Subject: [PATCH] Fix failing import test in test_agents.py --- tests/test_agents.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_agents.py b/tests/test_agents.py index 5486b2d..06d9554 100644 --- a/tests/test_agents.py +++ b/tests/test_agents.py @@ -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: