Skip to content

Commit ef0bb5c

Browse files
bpo-30121: Fix test_subprocess for Windows Debug builds (GH-5758)
(cherry picked from commit 5537646) Co-authored-by: Zachary Ware <[email protected]>
1 parent b0fd935 commit ef0bb5c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/test/test_subprocess.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1183,7 +1183,7 @@ def test_nonexisting_with_pipes(self):
11831183
msvcrt.CrtSetReportFile(report_type, msvcrt.CRTDBG_FILE_STDERR)
11841184
11851185
try:
1186-
subprocess.Popen([cmd],
1186+
subprocess.Popen(cmd,
11871187
stdout=subprocess.PIPE,
11881188
stderr=subprocess.PIPE)
11891189
except OSError:

0 commit comments

Comments
 (0)