[Zope-CVS] CVS: Products/Ape/lib/apelib/tests - teststorage.py:1.3

Shane Hathaway shane@zope.com
Wed, 14 May 2003 10:32:25 -0400


Update of /cvs-repository/Products/Ape/lib/apelib/tests
In directory cvs.zope.org:/tmp/cvs-serv5962/tests

Modified Files:
	teststorage.py 
Log Message:
Need to abort the transaction in tearDown.

=== Products/Ape/lib/apelib/tests/teststorage.py 1.2 => 1.3 ===
--- Products/Ape/lib/apelib/tests/teststorage.py:1.2	Tue Apr 29 18:11:51 2003
+++ Products/Ape/lib/apelib/tests/teststorage.py	Wed May 14 10:32:25 2003
@@ -55,6 +55,7 @@
         self.db = db
 
     def tearDown(self):
+        get_transaction().abort()
         self.db.close()
         SerialTestBase.tearDown(self)