summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSylvain Th?nault <sylvain.thenault@logilab.fr>2014-11-19 13:53:22 +0100
committerSylvain Th?nault <sylvain.thenault@logilab.fr>2014-11-19 13:53:22 +0100
commit0442fb6e49a9e1b0227cd1db78d339f1fe6788ae (patch)
tree4550cb1053bbc4b4db388bdf6fa221b26cdb5f90
parent230639bae6172203fd0db80bd299a71864bfc9f2 (diff)
downloadpylint-0442fb6e49a9e1b0227cd1db78d339f1fe6788ae.tar.gz
tests: fix more tests broken by max-line-length change
-rw-r--r--test/functional/long_lines_with_utf8.txt2
-rw-r--r--test/unittest_lint.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/test/functional/long_lines_with_utf8.txt b/test/functional/long_lines_with_utf8.txt
index 14f6529..42a7976 100644
--- a/test/functional/long_lines_with_utf8.txt
+++ b/test/functional/long_lines_with_utf8.txt
@@ -1 +1 @@
-line-too-long:7::Line too long (108/80)
+line-too-long:7::Line too long (108/100)
diff --git a/test/unittest_lint.py b/test/unittest_lint.py
index e935c1b..70ac115 100644
--- a/test/unittest_lint.py
+++ b/test/unittest_lint.py
@@ -465,7 +465,7 @@ class PyLinterTC(unittest.TestCase):
self.linter.set_reporter(TestReporter())
self.linter.check(os.path.join(os.path.dirname(__file__), 'data', 'ascript'))
self.assertEqual(
- ['C: 2: Line too long (175/80)'],
+ ['C: 2: Line too long (175/100)'],
self.linter.reporter.messages)
def test_html_reporter_missing_files(self):