[Zope-Checkins] CVS: Zope/lib/python/ZODB/tests - TransactionalUndoStorage.py:1.21.6.3 VersionStorage.py:1.17.2.3

Jeremy Hylton jeremy@zope.com
Wed, 14 May 2003 10:55:44 -0400


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

Modified Files:
      Tag: Zope-2_6-branch
	TransactionalUndoStorage.py VersionStorage.py 
Log Message:
Don't call clear() method.


=== Zope/lib/python/ZODB/tests/TransactionalUndoStorage.py 1.21.6.2 => 1.21.6.3 ===
--- Zope/lib/python/ZODB/tests/TransactionalUndoStorage.py:1.21.6.2	Tue May 13 15:03:53 2003
+++ Zope/lib/python/ZODB/tests/TransactionalUndoStorage.py	Wed May 14 10:55:43 2003
@@ -644,7 +644,6 @@
         for t in packtimes:
             self._storage.pack(t, referencesf)
             cn.sync()
-            cn._cache.clear()
             # The last undo set the value to 3 and pack should
             # never change that.
             self.assertEqual(rt["test"].value, 3)


=== Zope/lib/python/ZODB/tests/VersionStorage.py 1.17.2.2 => 1.17.2.3 ===
--- Zope/lib/python/ZODB/tests/VersionStorage.py:1.17.2.2	Tue May 13 15:03:53 2003
+++ Zope/lib/python/ZODB/tests/VersionStorage.py	Wed May 14 10:55:43 2003
@@ -491,7 +491,6 @@
 
         self._storage.pack(time.time(), referencesf)
         cn.sync()
-        cn._cache.clear()
         
         # make sure all the non-version data is there
         for name, obj in root.items():