From dc22e00a8ae073047f71547a3190e65d735ead12 Mon Sep 17 00:00:00 2001 From: luijait Date: Tue, 27 May 2025 12:39:00 +0200 Subject: [PATCH] Fix generc linux command test --- tests/tools/test_tool_generic_linux_command.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/tools/test_tool_generic_linux_command.py b/tests/tools/test_tool_generic_linux_command.py index 0688eb27..6136b0a6 100644 --- a/tests/tools/test_tool_generic_linux_command.py +++ b/tests/tools/test_tool_generic_linux_command.py @@ -88,7 +88,7 @@ async def test_generic_linux_command_interactive_flag(): RunContextWrapper(None), json.dumps(args) ) # Should still work, just might have different session handling - assert "test" in result + assert "async" in result @pytest.mark.asyncio