summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tests/.test_pylintrc1
-rw-r--r--tests/unittest_checker_format.py2
2 files changed, 1 insertions, 2 deletions
diff --git a/tests/.test_pylintrc b/tests/.test_pylintrc
index 2b5ccc122..798399320 100644
--- a/tests/.test_pylintrc
+++ b/tests/.test_pylintrc
@@ -28,7 +28,6 @@ disable=
missing-type-doc,
bare-except,
too-many-ancestors,
- implicit-str-concat,
wildcard-import,
singleton-comparison,
fixme,
diff --git a/tests/unittest_checker_format.py b/tests/unittest_checker_format.py
index c44a60899..e0cfcbf24 100644
--- a/tests/unittest_checker_format.py
+++ b/tests/unittest_checker_format.py
@@ -417,7 +417,7 @@ class TestCheckSpace(CheckerTestCase):
)
def testOperatorSpacingGood(self):
- good_cases = ["a = b\n" "a < b\n" "a\n< b\n"]
+ good_cases = ["a = b\n", "a < b\n", "a\n< b\n"]
with self.assertNoMessages():
for code in good_cases:
self.checker.process_tokens(_tokenize_str(code))