[Zope3-checkins] CVS: Zope3/src/zope/app/process/tests - test_bootstrap.py:1.7

Jim Fulton jim at zope.com
Mon Sep 22 15:45:40 EDT 2003


Update of /cvs-repository/Zope3/src/zope/app/process/tests
In directory cvs.zope.org:/tmp/cvs-serv4409

Modified Files:
	test_bootstrap.py 
Log Message:
Fixed Tim's fix. The tear-down method needs to call the base class'
tearDown to prevent lots of other tests from being broken.


=== Zope3/src/zope/app/process/tests/test_bootstrap.py 1.6 => 1.7 ===
--- Zope3/src/zope/app/process/tests/test_bootstrap.py:1.6	Mon Sep 22 11:57:18 2003
+++ Zope3/src/zope/app/process/tests/test_bootstrap.py	Mon Sep 22 15:45:39 2003
@@ -51,6 +51,7 @@
         self.db = DB(self.storage)
 
     def tearDown(self):
+        PlacefulSetup.tearDown(self)
         self.db.close()
 
     def createRootFolder(self):




More information about the Zope3-Checkins mailing list