Fix spurious cleanup error.

This commit is contained in:
Stuart D. Gathman
2016-07-25 22:12:27 -04:00
parent e28947c084
commit 728ac069cf
+1
View File
@@ -11,6 +11,7 @@ class AddrCacheTestCase(unittest.TestCase):
self.fname = 'test.dat'
def tearDown(self):
if os.path.exists(self.fname):
os.remove(self.fname)
def testAdd(self):