summaryrefslogtreecommitdiff
path: root/test/clitest.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/clitest.py')
-rw-r--r--test/clitest.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/clitest.py b/test/clitest.py
index 31e9015..1e552ba 100644
--- a/test/clitest.py
+++ b/test/clitest.py
@@ -86,7 +86,7 @@ class TestFileAttributes(unittest.TestCase):
86 proc = subprocess.Popen(['../mat', 'not_writtable'], 86 proc = subprocess.Popen(['../mat', 'not_writtable'],
87 stdout=subprocess.PIPE) 87 stdout=subprocess.PIPE)
88 stdout, _ = proc.communicate() 88 stdout, _ = proc.communicate()
89 self.assertEqual(str(stdout).strip('\n'), 'Unable to process %s' % 'not_writtable') 89 self.assertEqual(str(stdout).strip('\n'), '[-] %s is not writable' % 'not_writtable')
90 90
91 def test_not_exist(self): 91 def test_not_exist(self):
92 ''' test MAT's behaviour on non-existent file''' 92 ''' test MAT's behaviour on non-existent file'''