[Zodb-checkins] CVS: Zope/lib/python/ZEO/tests - testStart.py:1.18

Fred L. Drake, Jr. fred@zope.com
Mon, 10 Feb 2003 11:42:14 -0500


Update of /cvs-repository/Zope/lib/python/ZEO/tests
In directory cvs.zope.org:/tmp/cvs-serv21870

Modified Files:
	testStart.py 
Log Message:
Fix sense of test in hackish wait code.


=== Zope/lib/python/ZEO/tests/testStart.py 1.17 => 1.18 ===
--- Zope/lib/python/ZEO/tests/testStart.py:1.17	Mon Feb 10 11:05:23 2003
+++ Zope/lib/python/ZEO/tests/testStart.py	Mon Feb 10 11:42:13 2003
@@ -80,7 +80,7 @@
         # database may still be locked when the next test starts.
         i = 100
         while 1:
-            if self.getpids():
+            if not self.getpids():
                 break
             time.sleep(0.1)
             i -= 1