[Zodb-checkins] CVS: Zope/lib/python/ZODB/tests - MTStorage.py:1.4.4.2
Chris McDonough
chrism@zope.com
Tue, 8 Oct 2002 14:41:45 -0400
Update of /cvs-repository/Zope/lib/python/ZODB/tests
In directory cvs.zope.org:/tmp/cvs-serv20268/lib/python/ZODB/tests
Modified Files:
Tag: chrism-install-branch
MTStorage.py
Log Message:
Merging HEAD into chrism-install-branch.
=== Zope/lib/python/ZODB/tests/MTStorage.py 1.4.4.1 => 1.4.4.2 ===
--- Zope/lib/python/ZODB/tests/MTStorage.py:1.4.4.1 Mon Sep 16 02:00:54 2002
+++ Zope/lib/python/ZODB/tests/MTStorage.py Tue Oct 8 14:41:14 2002
@@ -170,9 +170,9 @@
for t in threads:
t.start()
for t in threads:
- t.join(30)
+ t.join(10)
for t in threads:
- self.failIf(t.isAlive(), "thread failed to finish in 30 seconds")
+ self.failIf(t.isAlive())
def check2ZODBThreads(self):
db = ZODB.DB(self._storage)