Commit 385471c3 authored by Jeremy Hylton's avatar Jeremy Hylton

Use local method _get_timestamp().

parent 2c2f96c6
...@@ -13,7 +13,10 @@ ...@@ -13,7 +13,10 @@
############################################################################## ##############################################################################
"""Tests of the distributed commit lock.""" """Tests of the distributed commit lock."""
import time
from ZODB.Transaction import Transaction from ZODB.Transaction import Transaction
from ZODB.TimeStamp import TimeStamp
from ZODB.tests.StorageTestBase import zodb_pickle, MinPO from ZODB.tests.StorageTestBase import zodb_pickle, MinPO
import ZEO.ClientStorage import ZEO.ClientStorage
...@@ -113,7 +116,7 @@ class CommitLockTests: ...@@ -113,7 +116,7 @@ class CommitLockTests:
for i in range(4): for i in range(4):
storage2 = self._duplicate_client() storage2 = self._duplicate_client()
t2 = Transaction() t2 = Transaction()
tid = `ZEO.ClientStorage.get_timestamp()` # XXX why? tid = self._get_timestamp()
dosetup(storage2, t2, tid) dosetup(storage2, t2, tid)
if i == 0: if i == 0:
storage2.close() storage2.close()
......
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