[Zodb-checkins]
SVN: ZODB/branches/jim-storage-api-cleanup/src/ZEO/tests/testConversionSupport.py
Fixed stub server.
Jim Fulton
jim at zope.com
Thu Apr 26 10:36:14 EDT 2007
Log message for revision 74781:
Fixed stub server.
Changed:
U ZODB/branches/jim-storage-api-cleanup/src/ZEO/tests/testConversionSupport.py
-=-
Modified: ZODB/branches/jim-storage-api-cleanup/src/ZEO/tests/testConversionSupport.py
===================================================================
--- ZODB/branches/jim-storage-api-cleanup/src/ZEO/tests/testConversionSupport.py 2007-04-26 14:27:56 UTC (rev 74780)
+++ ZODB/branches/jim-storage-api-cleanup/src/ZEO/tests/testConversionSupport.py 2007-04-26 14:36:13 UTC (rev 74781)
@@ -30,6 +30,9 @@
def __len__(self):
return 4
+ def getTid(self, oid):
+ pass
+
class FakeStorage(FakeStorageBase):
def record_iternext(self, next=None):
@@ -42,9 +45,6 @@
return oid, oid*8, 'data ' + oid, next
- def getTid(self, oid):
- pass
-
class FakeServer:
storages = {
'1': FakeStorage(),
More information about the Zodb-checkins
mailing list