From 67d1dd488ebd067d4948d49a5f1c70cefa37361e Mon Sep 17 00:00:00 2001 From: Arsenii Shatokhin Date: Thu, 22 Feb 2024 16:07:13 +0400 Subject: [PATCH] Adjusted test prompt --- tests/test_agency.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_agency.py b/tests/test_agency.py index e3d3dfa0..df924e76 100644 --- a/tests/test_agency.py +++ b/tests/test_agency.py @@ -226,7 +226,7 @@ def test_7_async_agent_communication(self): time.sleep(10) - message = self.__class__.agency.get_completion("Please check response. If the GetResponse function output includes TestAgent1's Response (for example, that the message was sent to Test Agent 2, the process or the task has started, etc.), say 'success'. If the function output does not include TestAgent1's Response, or if you get a System Notification, or an error instead, say 'error'.", + message = self.__class__.agency.get_completion("Please check response. If the GetResponse function output includes `TestAgent1's Response` (for example, that the message was sent to Test Agent 2, the process or the task has started, initiated, etc.), say 'success'. If the function output does not include `TestAgent1's Response`, or if you get a System Notification, or an error instead, say 'error'.", yield_messages=False) self.assertFalse('error' in message.lower())