[Zope-Checkins] CVS: Zope/lib/python/ZEO/tests - CommitLockTests.py:1.12.18.1

Chris McDonough chrism@zope.com
Mon, 21 Jul 2003 12:39:19 -0400


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

Modified Files:
      Tag: Zope-2_7-branch
	CommitLockTests.py 
Log Message:
Merge changes from HEAD since the release of Zope 2.7a1 into the Zope-2_7-branch in preparation for release of Zope 2.7b1.


=== Zope/lib/python/ZEO/tests/CommitLockTests.py 1.12 => 1.12.18.1 ===
--- Zope/lib/python/ZEO/tests/CommitLockTests.py:1.12	Wed Jan 15 13:19:16 2003
+++ Zope/lib/python/ZEO/tests/CommitLockTests.py	Mon Jul 21 12:37:15 2003
@@ -242,5 +242,5 @@
 
     def _get_timestamp(self):
         t = time.time()
-        t = apply(TimeStamp,(time.gmtime(t)[:5]+(t%60,)))
+        t = TimeStamp(*time.gmtime(t)[:5]+(t%60,))
         return `t`