summaryrefslogtreecommitdiff
path: root/testsuite/test_shell.py
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/test_shell.py')
-rw-r--r--testsuite/test_shell.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/testsuite/test_shell.py b/testsuite/test_shell.py
index 3878194..059d882 100644
--- a/testsuite/test_shell.py
+++ b/testsuite/test_shell.py
@@ -79,7 +79,7 @@ class ShellTestCase(unittest.TestCase):
self.assertFalse(stderr)
self.assertEqual(len(stdout), 24)
for line, num, col in zip(stdout, (3, 6, 6, 9, 12), (3, 6, 6, 1, 5)):
- path, x, y, msg = line.split(':')
+ path, x, y, msg = line.rsplit(':', 3)
self.assertTrue(path.endswith(E11))
self.assertEqual(x, str(num))
self.assertEqual(y, str(col))