Skip to content

Commit

Permalink
space
Browse files Browse the repository at this point in the history
  • Loading branch information
vachillo committed Oct 18, 2024
1 parent 20f8f91 commit c48420c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/unit/utils/test_stream.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit c48420c

Please sign in to comment.