[Zope3-checkins] SVN: zope.testing/branches/adamg-wouldbe-fix-for-winbot/src/zope/testing/testrunner/testrunner-ex/sampletests/test12.py This should fix the only failure on winbot (win server 2003 64 bit+py24)
Adam Groszer
agroszer at gmail.com
Fri Aug 20 10:34:49 EDT 2010
Log message for revision 115841:
This should fix the only failure on winbot (win server 2003 64 bit+py24)
Changed:
U zope.testing/branches/adamg-wouldbe-fix-for-winbot/src/zope/testing/testrunner/testrunner-ex/sampletests/test12.py
-=-
Modified: zope.testing/branches/adamg-wouldbe-fix-for-winbot/src/zope/testing/testrunner/testrunner-ex/sampletests/test12.py
===================================================================
--- zope.testing/branches/adamg-wouldbe-fix-for-winbot/src/zope/testing/testrunner/testrunner-ex/sampletests/test12.py 2010-08-20 14:21:30 UTC (rev 115840)
+++ zope.testing/branches/adamg-wouldbe-fix-for-winbot/src/zope/testing/testrunner/testrunner-ex/sampletests/test12.py 2010-08-20 14:34:49 UTC (rev 115841)
@@ -12,6 +12,7 @@
#
##############################################################################
+import time
import unittest
from zope.testing import doctest
import samplelayers
@@ -44,6 +45,7 @@
self.assertEqual(z, 0)
self.assertEqual(samplelayers.layer, layer.layer)
self.assertEqual(samplelayers.layerx, layer.layerx)
+ time.sleep(0.01)
class TestB(unittest.TestCase):
layer = layername
More information about the Zope3-Checkins
mailing list