Skip to content
Snippets Groups Projects
Commit 728ac069 authored by Stuart D. Gathman's avatar Stuart D. Gathman
Browse files

Fix spurious cleanup error.

parent e28947c0
No related branches found
No related tags found
No related merge requests found
...@@ -11,6 +11,7 @@ class AddrCacheTestCase(unittest.TestCase): ...@@ -11,6 +11,7 @@ class AddrCacheTestCase(unittest.TestCase):
self.fname = 'test.dat' self.fname = 'test.dat'
def tearDown(self): def tearDown(self):
if os.path.exists(self.fname):
os.remove(self.fname) os.remove(self.fname)
def testAdd(self): def testAdd(self):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment