Commit 474179c1 authored by Tim Peters's avatar Tim Peters

CommonSetupTearDown.tearDown(): Interpolate the cache name into the

zec file name (the code intended to do this all along).
parent f1350548
...@@ -108,7 +108,7 @@ class CommonSetupTearDown(StorageTestBase): ...@@ -108,7 +108,7 @@ class CommonSetupTearDown(StorageTestBase):
os.waitpid(pid, 0) os.waitpid(pid, 0)
for c in self.caches: for c in self.caches:
for i in 0, 1: for i in 0, 1:
path = "c1-test-%d.zec" % i path = "c1-%s-%d.zec" % (c, i)
if os.path.exists(path): if os.path.exists(path):
os.unlink(path) os.unlink(path)
self.__super_tearDown() self.__super_tearDown()
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment