We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e7422b2 commit 594a3efCopy full SHA for 594a3ef
tests/test_tools/test_inbuilt_tools.py
@@ -595,7 +595,7 @@ def test_speak_to_skips_non_llm_recipient(mocker):
595
596
sender = DummyAgent(unique_id=1, model=model)
597
llm_recipient = DummyAgent(unique_id=2, model=model)
598
- rule_recipient = DummyAgent(unique_id=3, model=model)
+ rule_recipient = DummyAgent(unique_id=3, model=model)
599
600
llm_recipient.memory = SimpleNamespace(add_to_memory=mocker.Mock())
601
@@ -608,4 +608,4 @@ def test_speak_to_skips_non_llm_recipient(mocker):
608
assert call_kwargs["type"] == "message"
609
assert call_kwargs["content"]["message"] == "Hello both"
610
611
- assert "2" in ret and "3" in ret
+ assert "2" in ret and "3" in ret
0 commit comments