[Zodb-checkins] CVS: ZODB3/BTrees/tests - testConflict.py:1.16
Jeremy Hylton
jeremy at zope.com
Thu Apr 24 12:31:42 EDT 2003
Update of /cvs-repository/ZODB3/BTrees/tests
In directory cvs.zope.org:/tmp/cvs-serv3705
Modified Files:
testConflict.py
Log Message:
Close db instead of storage to clear circular references.
=== ZODB3/BTrees/tests/testConflict.py 1.15 => 1.16 ===
--- ZODB3/BTrees/tests/testConflict.py:1.15 Fri Jan 17 12:20:51 2003
+++ ZODB3/BTrees/tests/testConflict.py Thu Apr 24 11:31:42 2003
@@ -24,12 +24,12 @@
class Base:
""" Tests common to all types: sets, buckets, and BTrees """
- storage = None
+ db = None
def tearDown(self):
del self.t
- if self.storage is not None:
- self.storage.close()
+ if self.db is not None:
+ self.db.close()
self.storage.cleanup()
def openDB(self):
More information about the Zodb-checkins
mailing list