From 4c1f127549acf983bed2ac60308dc5ff2325643c Mon Sep 17 00:00:00 2001 From: axelray-dev <110029405+axelray-dev@users.noreply.github.com> Date: Thu, 25 Jun 2026 19:21:51 +0800 Subject: [PATCH] test: update login-shell assertion for new default=False --- tests/tools/test_exec_platform.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/tools/test_exec_platform.py b/tests/tools/test_exec_platform.py index a72b06e3..039888ff 100644 --- a/tests/tools/test_exec_platform.py +++ b/tests/tools/test_exec_platform.py @@ -105,7 +105,7 @@ class TestSpawnUnix: args = mock_exec.call_args[0] assert "bash" in args[0] - assert "-l" in args + assert "-l" not in args assert "-c" in args assert "echo hi" in args