From 9ea82c130bb6ada49b573d33af51b9deb8d5ac5f Mon Sep 17 00:00:00 2001 From: Alexandre Fayolle Date: Mon, 1 Sep 2008 16:53:56 +0200 Subject: [PATCH] fixed broken test --- bin/epylint | 0 test/unittest_lint.py | 3 ++- 2 files changed, 2 insertions(+), 1 deletion(-) mode change 100644 => 100755 bin/epylint diff --git a/bin/epylint b/bin/epylint old mode 100644 new mode 100755 diff --git a/test/unittest_lint.py b/test/unittest_lint.py index cc592e8a5..91b3421b3 100644 --- a/test/unittest_lint.py +++ b/test/unittest_lint.py @@ -93,7 +93,8 @@ class PyLinterTC(TestCase): def test_message_help(self): msg = self.linter.get_message_help('F0001', checkerref=True) - expected = ':F0001:\n Used when an error occured preventing the analyzing of a module (unable to\n find it for instance). This message belongs to the master checker.' + expected = ':F0001:\n Used when an error occured preventing the analysis of a module (unable to find\n it for instance). This message belongs to the master checker.' + self.assertTextEqual(msg, expected) self.assertEquals(' '.join(msg.splitlines()), ' '.join(expected.splitlines())) self.assertRaises(UnknownMessage, self.linter.get_message_help, 'YB12')