summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test/libtest.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/test/libtest.py b/test/libtest.py
index 5b23587..9ab23d8 100644
--- a/test/libtest.py
+++ b/test/libtest.py
@@ -41,8 +41,7 @@ class TestListlib(test.MATTest):
41 '''check if get_meta returns all the expected meta''' 41 '''check if get_meta returns all the expected meta'''
42 for _, dirty in self.file_list: 42 for _, dirty in self.file_list:
43 current_file = MAT.mat.create_class_file(dirty, False, add2archive=True, low_pdf_quality=True) 43 current_file = MAT.mat.create_class_file(dirty, False, add2archive=True, low_pdf_quality=True)
44 #FIXME assertisNotNone() : python 2.7 44 self.assertIsNotNone(current_file.get_meta())
45 self.assertTrue(current_file.get_meta())
46 45
47 def testlist_list_empty(self): 46 def testlist_list_empty(self):
48 '''check that a listing of a clean file return an empty dict''' 47 '''check that a listing of a clean file return an empty dict'''