[Zope-Checkins] CVS: ZODB3/ZEO/tests - ConnectionTests.py:1.32
Tim Peters
tim.one@comcast.net
Mon, 16 Jun 2003 14:29:26 -0400
Update of /cvs-repository/ZODB3/ZEO/tests
In directory cvs.zope.org:/tmp/cvs-serv28417/ZEO/tests
Modified Files:
ConnectionTests.py
Log Message:
CommonSetupTearDown.tearDown(): Interpolate the cache name into the
zec file name (the code intended to do this all along).
=== ZODB3/ZEO/tests/ConnectionTests.py 1.31 => 1.32 ===
--- ZODB3/ZEO/tests/ConnectionTests.py:1.31 Mon Jun 16 14:18:41 2003
+++ ZODB3/ZEO/tests/ConnectionTests.py Mon Jun 16 14:29:26 2003
@@ -108,7 +108,7 @@
os.waitpid(pid, 0)
for c in self.caches:
for i in 0, 1:
- path = "c1-test-%d.zec" % i
+ path = "c1-%s-%d.zec" % (c, i)
if os.path.exists(path):
os.unlink(path)
self.__super_tearDown()