summaryrefslogtreecommitdiff
path: root/test/clitest.py
diff options
context:
space:
mode:
authorjvoisin2013-07-20 18:01:16 +0200
committerjvoisin2013-07-20 18:01:16 +0200
commit2b5a56407cda78e9eeff126debf074dbe02579f8 (patch)
treed55fe5c5471e308652e563202482a4cfb4d766bf /test/clitest.py
parent1b409d411c4aaace0572ecc3e77a5e8df16ecec8 (diff)
Simplification and refactoring of the testsuite
Diffstat (limited to '')
-rw-r--r--test/clitest.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/clitest.py b/test/clitest.py
index d877698..31e9015 100644
--- a/test/clitest.py
+++ b/test/clitest.py
@@ -52,7 +52,8 @@ class TestListcli(test.MATTest):
52 proc = subprocess.Popen(['../mat', '-d', dirty], 52 proc = subprocess.Popen(['../mat', '-d', dirty],
53 stdout=subprocess.PIPE) 53 stdout=subprocess.PIPE)
54 stdout, _ = proc.communicate() 54 stdout, _ = proc.communicate()
55 self.assertNotEqual(str(stdout), "[+] File %s" % dirty) 55 self.assertNotEqual(str(stdout), "[+] File %s :\n No\
56harmul metadata found" % dirty)
56 57
57 58
58class TestisCleancli(test.MATTest): 59class TestisCleancli(test.MATTest):