summaryrefslogtreecommitdiff
path: root/test/libtest.py
diff options
context:
space:
mode:
authorjvoisin2011-10-26 22:09:49 +0200
committerjvoisin2011-10-26 22:09:49 +0200
commit47729bf9faa6607b89d99a9af2d6ab971f2c1ed0 (patch)
treeeaffa2b2d784e037deccb8e6378eac4e5a05d876 /test/libtest.py
parenta88071264391211017a470e0fd6f06dda67760b4 (diff)
Bugfix
Diffstat (limited to '')
-rw-r--r--test/libtest.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/libtest.py b/test/libtest.py
index d8aaac1..ecbc03e 100644
--- a/test/libtest.py
+++ b/test/libtest.py
@@ -19,7 +19,8 @@ class TestRemovelib(test.MATTest):
19 for _, dirty in self.file_list: 19 for _, dirty in self.file_list:
20 current_file = mat.create_class_file(dirty, False, True) 20 current_file = mat.create_class_file(dirty, False, True)
21 current_file.remove_all() 21 current_file.remove_all()
22 self.assertTrue(current_file.is_clean()) 22 current_file2 = mat.create_class_file(dirty, False, True)
23 self.assertTrue(current_file2.is_clean())
23 24
24 def test_remove_empty(self): 25 def test_remove_empty(self):
25 '''Test removal with clean files''' 26 '''Test removal with clean files'''