From 18ead88273044cfd6c09a6555deca5561ca0eeeb Mon Sep 17 00:00:00 2001 From: teknium <127238744+teknium1@users.noreply.github.com> Date: Mon, 8 Jun 2026 22:26:17 -0700 Subject: [PATCH] test: update docker preflight assertion for stdin=DEVNULL kwarg The blanket stdin=subprocess.DEVNULL pass added the kwarg to the docker 'version' preflight call; the test pinned the exact kwargs dict. Update the expected dict to match. --- tests/tools/test_docker_environment.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/tools/test_docker_environment.py b/tests/tools/test_docker_environment.py index 04935d81dfc..cea9ae4e4ff 100644 --- a/tests/tools/test_docker_environment.py +++ b/tests/tools/test_docker_environment.py @@ -109,6 +109,7 @@ def test_ensure_docker_available_uses_resolved_executable(monkeypatch): "capture_output": True, "text": True, "timeout": 5, + "stdin": subprocess.DEVNULL, }) ]