From dbf8e839cf9b054ff30636ed033fa8125d1a4f0a Mon Sep 17 00:00:00 2001 From: Brian Curtin Date: Fri, 5 Nov 2010 15:28:19 +0000 Subject: [PATCH] Backport r85525 from #10098. --- Lib/test/test_os.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/test/test_os.py b/Lib/test/test_os.py index 49f554c605..d68a97aba3 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 -- 2.50.1