summaryrefslogtreecommitdiff
path: root/test/test.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/test.py')
-rw-r--r--test/test.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/test/test.py b/test/test.py
index 1641f88..49a657b 100644
--- a/test/test.py
+++ b/test/test.py
@@ -62,6 +62,9 @@ class MATTest(unittest.TestCase):
62 ''' 62 '''
63 Remove the tmp folder 63 Remove the tmp folder
64 ''' 64 '''
65 for root, dirs, files in os.walk(self.tmpdir):
66 for d in dirs + files:
67 os.chmod(os.path.join(root, d), 0o777)
65 shutil.rmtree(self.tmpdir) 68 shutil.rmtree(self.tmpdir)
66 69
67 70