From c48420c4e4c0005c8a80d954b910d6411a662510 Mon Sep 17 00:00:00 2001 From: matt Date: Fri, 18 Oct 2024 13:48:25 -0500 Subject: [PATCH] space --- tests/unit/utils/test_stream.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/unit/utils/test_stream.py b/tests/unit/utils/test_stream.py index 598cceb136..e16403a067 100644 --- a/tests/unit/utils/test_stream.py +++ b/tests/unit/utils/test_stream.py @@ -24,7 +24,7 @@ def test_init(self, agent): assert chat_stream.structure == agent chat_stream_run = chat_stream.run() assert isinstance(chat_stream_run, Iterator) - assert next(chat_stream_run).value == "MockTool.mock-tag(test)" + assert next(chat_stream_run).value == "MockTool.mock-tag (test)" assert next(chat_stream_run).value == json.dumps({"values": {"test": "test-value"}}, indent=2) next(chat_stream_run) assert next(chat_stream_run).value == "Answer: mock output"