[Zodb-checkins] CVS: ZODB3/ZODB/tests - PackableStorage.py:1.22.2.2
TransactionalUndoStorage.py:1.33.2.3
VersionStorage.py:1.25.2.8 testFileStorage.py:1.34.2.4
Tim Peters
cvs-admin at zope.org
Mon Dec 1 10:16:12 EST 2003
Update of /cvs-repository/ZODB3/ZODB/tests
In directory cvs.zope.org:/tmp/cvs-serv31977/ZODB/tests
Modified Files:
Tag: ZODB3-mvcc-2-branch
PackableStorage.py TransactionalUndoStorage.py
VersionStorage.py testFileStorage.py
Log Message:
Whitespace normalization.
=== ZODB3/ZODB/tests/PackableStorage.py 1.22.2.1 => 1.22.2.2 ===
--- ZODB3/ZODB/tests/PackableStorage.py:1.22.2.1 Mon Nov 24 13:04:13 2003
+++ ZODB3/ZODB/tests/PackableStorage.py Mon Dec 1 10:16:11 2003
@@ -519,4 +519,3 @@
get_transaction().commit()
except ConflictError:
get_transaction().abort()
-
=== ZODB3/ZODB/tests/TransactionalUndoStorage.py 1.33.2.2 => 1.33.2.3 ===
--- ZODB3/ZODB/tests/TransactionalUndoStorage.py:1.33.2.2 Thu Oct 9 16:26:24 2003
+++ ZODB3/ZODB/tests/TransactionalUndoStorage.py Mon Dec 1 10:16:11 2003
@@ -142,7 +142,7 @@
self._undo(info[0]['id'], [oid])
data, revid = self._storage.load(oid, '')
eq(zodb_unpickle(data), MinPO(11))
-
+
# Now from here, we can either redo the last undo, or undo the object
# creation. Let's undo the object creation.
info = self._storage.undoInfo()
@@ -205,7 +205,7 @@
eq(zodb_unpickle(data), MinPO(32))
data, revid2 = self._storage.load(oid2, '')
eq(zodb_unpickle(data), MinPO(52))
-
+
# Now attempt to undo the transaction containing two objects
info = self._storage.undoInfo()
self._undo(info[0]['id'], [oid1, oid2])
@@ -267,7 +267,7 @@
eq(zodb_unpickle(data), MinPO(30))
data, revid2 = self._storage.load(oid2, '')
eq(zodb_unpickle(data), MinPO(50))
-
+
# Now try to undo the one we just did to undo, whew
info = self._storage.undoInfo()
self._undo(info[0]['id'], [oid1, oid2])
=== ZODB3/ZODB/tests/VersionStorage.py 1.25.2.7 => 1.25.2.8 ===
--- ZODB3/ZODB/tests/VersionStorage.py:1.25.2.7 Tue Nov 25 12:35:43 2003
+++ ZODB3/ZODB/tests/VersionStorage.py Mon Dec 1 10:16:11 2003
@@ -203,7 +203,7 @@
# is not current
self._dostore(oid, revid=serial, data=MinPO(17))
ltid = self._storage.lastTransaction()
-
+
ncdata, ncserial, start, end = self._storage.loadNonCurrent(oid, ltid)
self.assertEqual(data, ncdata)
=== ZODB3/ZODB/tests/testFileStorage.py 1.34.2.3 => 1.34.2.4 ===
--- ZODB3/ZODB/tests/testFileStorage.py:1.34.2.3 Mon Nov 24 13:04:13 2003
+++ ZODB3/ZODB/tests/testFileStorage.py Mon Dec 1 10:16:11 2003
@@ -194,7 +194,7 @@
class SlowFileStorageTest(BaseFileStorageTests):
level = 2
-
+
def check10Kstores(self):
# The _get_cached_serial() method has a special case
# every 8000 calls. Make sure it gets minimal coverage.
More information about the Zodb-checkins
mailing list