summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorjvoisin2018-07-10 21:30:38 +0200
committerjvoisin2018-07-10 21:30:38 +0200
commit5a7c7f35f7d526a8c0ed49da12e4efc5e9dd6582 (patch)
treee9af668c60f2b6b16641f5bbd106b9ff7d27b3b9 /tests
parentd5861e46537f3e94abd26f63a3a7ad5b69d25e77 (diff)
Remove `print` from libmat, and use the `logging` module instead
This should close #28
Diffstat (limited to 'tests')
-rw-r--r--tests/test_libmat2.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/tests/test_libmat2.py b/tests/test_libmat2.py
index fa7e281..95f4ceb 100644
--- a/tests/test_libmat2.py
+++ b/tests/test_libmat2.py
@@ -195,7 +195,6 @@ class TestDeepCleaning(unittest.TestCase):
195 inside_p, _ = parser_factory.get_parser(complete_path) 195 inside_p, _ = parser_factory.get_parser(complete_path)
196 if inside_p is None: 196 if inside_p is None:
197 continue 197 continue
198 print('[+] %s is clean inside %s' %(complete_path, p.filename))
199 self.assertEqual(inside_p.get_meta(), {}) 198 self.assertEqual(inside_p.get_meta(), {})
200 shutil.rmtree(tempdir) 199 shutil.rmtree(tempdir)
201 200