Skip to content

Commit 32226a9

Browse files
authored
Update Lib/test/test_cmd_line.py
1 parent 919b64a commit 32226a9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/test/test_cmd_line.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ def test_null_byte_in_interactive_mode(self):
205205
# gh-140594: Fix an out of bounds read when a single NUL character
206206
# is read from the standard input in interactive mode.
207207
proc = spawn_python('-i')
208-
proc.communicate(b'\x00', timeout=10)
208+
proc.communicate(b'\x00', timeout=support.SHORT_TIMEOUT)
209209
self.assertEqual(proc.returncode, 0)
210210

211211
def test_relativedir_bug46421(self):

0 commit comments

Comments
 (0)