From ba17d16d11aa84aab1cfc95d21aa7abbed42c9e0 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