Commit 1520fe4e authored by Collin Winter's avatar Collin Winter

Shut up an occaisonal buildbot error due to test files being left around.

parent db846037
......@@ -373,6 +373,14 @@ class WalkTests(unittest.TestCase):
class MakedirTests (unittest.TestCase):
def setUp(self):
try:
os.rmdir(test_support.TESTFN)
except OSError:
pass
try:
os.unlink(test_support.TESTFN)
except OSError:
pass
os.mkdir(test_support.TESTFN)
def test_makedir(self):
......
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