[Zope-Checkins] CVS: ZODB3/ZEO/tests - ConnectionTests.py:1.37

Tim Peters tim.one@comcast.net
Mon, 16 Jun 2003 15:45:39 -0400


Update of /cvs-repository/ZODB3/ZEO/tests
In directory cvs.zope.org:/tmp/cvs-serv6912/ZEO/tests

Modified Files:
	ConnectionTests.py 
Log Message:
checkNoVerificationOnServerRestartWith2Clients():  Close self._storage
too.  Mystery:  whether this test dies with permission denied when
trying to unlink the .zec file is still a crapshoot.   Don't know why.
At least four other tests show sporadic failures of the same kind.


=== ZODB3/ZEO/tests/ConnectionTests.py 1.36 => 1.37 ===
--- ZODB3/ZEO/tests/ConnectionTests.py:1.36	Mon Jun 16 15:08:13 2003
+++ ZODB3/ZEO/tests/ConnectionTests.py	Mon Jun 16 15:45:38 2003
@@ -728,6 +728,7 @@
         self.assertEqual(self._storage.verify_result, "no verification")
         self.assertEqual(perstorage.verify_result, "no verification")
         perstorage.close()
+        self._storage.close()
 
     def checkQuickVerificationWith2Clients(self):
         perstorage = self.openClientStorage(cache="test")