diff options
Diffstat (limited to 'testsuite/test_shell.py')
-rw-r--r-- | testsuite/test_shell.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testsuite/test_shell.py b/testsuite/test_shell.py index e1205cc..e536852 100644 --- a/testsuite/test_shell.py +++ b/testsuite/test_shell.py @@ -75,7 +75,7 @@ class ShellTestCase(unittest.TestCase): stdout = stdout.splitlines() self.assertEqual(errcode, 1) self.assertFalse(stderr) - self.assertEqual(len(stdout), 6) + self.assertEqual(len(stdout), 17) for line, num, col in zip(stdout, (3, 6, 9, 12), (3, 6, 1, 5)): path, x, y, msg = line.split(':') self.assertTrue(path.endswith(E11)) |