summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorjvoisin2011-12-13 13:59:13 +0100
committerjvoisin2011-12-13 13:59:13 +0100
commitbb41ac16339e9138587921629b8b9e4336ea10a6 (patch)
tree96636604f4a132d7a5eecff8b637263c05fcc91b /test
parent47fcf3a0715143358b453f92807a519162a97f58 (diff)
Oops, forgot a debug instruction
A debug instruction was making a test fail : it's now fixed
Diffstat (limited to 'test')
-rw-r--r--test/libtest.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/test/libtest.py b/test/libtest.py
index 1afabd9..bfeb548 100644
--- a/test/libtest.py
+++ b/test/libtest.py
@@ -75,8 +75,7 @@ class TestFileAttributes(unittest.TestCase):
75 self.assertFalse(mat.create_class_file('not_writtable', False, True)) 75 self.assertFalse(mat.create_class_file('not_writtable', False, True))
76 76
77 def test_not_exist(self): 77 def test_not_exist(self):
78 #self.assertFalse(mat.create_class_file('ilikecookies', False, True)) 78 self.assertFalse(mat.create_class_file('ilikecookies', False, True))
79 self.assertTrue(mat.create_class_file('ilikecookies', False, True))
80 79
81if __name__ == '__main__': 80if __name__ == '__main__':
82 Suite = unittest.TestSuite() 81 Suite = unittest.TestSuite()