[Zodb-checkins]
SVN: ZODB/trunk/src/ZEO/tests/testConversionSupport.py
Renamed getSerial to getTid.
Jim Fulton
jim at zope.com
Thu Apr 26 19:19:18 EDT 2007
Log message for revision 74825:
Renamed getSerial to getTid.
Changed:
U ZODB/trunk/src/ZEO/tests/testConversionSupport.py
-=-
Modified: ZODB/trunk/src/ZEO/tests/testConversionSupport.py
===================================================================
--- ZODB/trunk/src/ZEO/tests/testConversionSupport.py 2007-04-26 23:19:14 UTC (rev 74824)
+++ ZODB/trunk/src/ZEO/tests/testConversionSupport.py 2007-04-26 23:19:17 UTC (rev 74825)
@@ -17,10 +17,10 @@
class FakeStorageBase:
def __getattr__(self, name):
- if name in ('versionEmpty', 'versions', 'getSerial',
+ if name in ('versionEmpty', 'versions', 'getTid',
'history', 'load', 'loadSerial', 'modifiedInVersion',
'lastTransaction', 'getSize', 'getName', 'supportsUndo',
- 'supportsVersions'):
+ 'supportsVersions', 'tpc_transaction'):
return lambda *a, **k: None
raise AttributeError(name)
More information about the Zodb-checkins
mailing list