summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/test.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test.py b/test/test.py
index f856394..cb061ec 100644
--- a/test/test.py
+++ b/test/test.py
@@ -20,7 +20,7 @@ class MATTest(unittest.TestCase):
20 def setUp(self): 20 def setUp(self):
21 '''create working copy of the clean and the dirty file in the TMP dir''' 21 '''create working copy of the clean and the dirty file in the TMP dir'''
22 self.file_list = [] 22 self.file_list = []
23 self.tmpdir = tempfile.mkdtemp() 23 _, self.tmpdir = tempfile.mkstemp()
24 24
25 for clean, dirty in FILE_LIST: 25 for clean, dirty in FILE_LIST:
26 shutil.copy2(clean, self.tmpdir + clean) 26 shutil.copy2(clean, self.tmpdir + clean)