Commit 892525e7 authored by Fred Drake's avatar Fred Drake

Fix sense of test in hackish wait code.

parent d7603f60
...@@ -80,7 +80,7 @@ class StartTests(unittest.TestCase): ...@@ -80,7 +80,7 @@ class StartTests(unittest.TestCase):
# database may still be locked when the next test starts. # database may still be locked when the next test starts.
i = 100 i = 100
while 1: while 1:
if self.getpids(): if not self.getpids():
break break
time.sleep(0.1) time.sleep(0.1)
i -= 1 i -= 1
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment