diff options
| author | Brian Curtin <brian.curtin@gmail.com> | 2010-11-05 15:28:19 (GMT) |
|---|---|---|
| committer | Brian Curtin <brian.curtin@gmail.com> | 2010-11-05 15:28:19 (GMT) |
| commit | dbf8e839cf9b054ff30636ed033fa8125d1a4f0a (patch) | |
| tree | 77e71f829c2b79f863f5ce7af209bcf51f78ccc6 /Lib/test/test_os.py | |
| parent | 3606f9570ea8e40ad687d302dd7eb85a051eb18f (diff) | |
| download | cpython-dbf8e839cf9b054ff30636ed033fa8125d1a4f0a.zip cpython-dbf8e839cf9b054ff30636ed033fa8125d1a4f0a.tar.gz cpython-dbf8e839cf9b054ff30636ed033fa8125d1a4f0a.tar.bz2 | |
Backport r85525 from #10098.
Diffstat (limited to 'Lib/test/test_os.py')
| -rw-r--r-- | Lib/test/test_os.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_os.py b/Lib/test/test_os.py index 49f554c..d68a97a 100644 --- a/Lib/test/test_os.py +++ b/Lib/test/test_os.py @@ -750,7 +750,7 @@ class Win32KillTests(unittest.TestCase): # Let the interpreter startup before we send signals. See #3137. count, max = 0, 20 while count < max and proc.poll() is None: - if m[0] == '0': + if m[0] == '1': break time.sleep(0.5) count += 1 |
