From 962788796f65905f0860a38bec46e6c9cce09ff8 Mon Sep 17 00:00:00 2001 From: evelynmitchell Date: Mon, 27 Nov 2023 18:16:28 -0700 Subject: [PATCH] flake8 assertTrue test_multi_agent_collab --- tests/swarms/test_multi_agent_collab.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/swarms/test_multi_agent_collab.py b/tests/swarms/test_multi_agent_collab.py index bea2c795..2a3eb55c 100644 --- a/tests/swarms/test_multi_agent_collab.py +++ b/tests/swarms/test_multi_agent_collab.py @@ -26,7 +26,7 @@ def test_collaboration_initialization(collaboration): assert callable(collaboration.select_next_speaker) assert collaboration.max_iters == 10 assert collaboration.results == [] - assert collaboration.logging == True + assertTrue(collaboration.logging, "Collaboration logging is not enabled") def test_reset(collaboration):