Skip to content

Commit 5537646

Browse files
authored
bpo-30121: Fix test_subprocess for Windows Debug builds (GH-5758)
1 parent 4c7108a commit 5537646

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
@@ -1179,7 +1179,7 @@ def test_nonexisting_with_pipes(self):
11791179
msvcrt.CrtSetReportFile(report_type, msvcrt.CRTDBG_FILE_STDERR)
11801180
11811181
try:
1182-
subprocess.Popen([cmd],
1182+
subprocess.Popen(cmd,
11831183
stdout=subprocess.PIPE,
11841184
stderr=subprocess.PIPE)
11851185
except OSError:

0 commit comments

Comments
 (0)