Commit 1a80097a by stv

Fix PEP8: E112 expected an indented block

parent ef420ffd
...@@ -31,9 +31,11 @@ class TestPaverQualityViolations(unittest.TestCase): ...@@ -31,9 +31,11 @@ class TestPaverQualityViolations(unittest.TestCase):
@file_data('pylint_test_list.json') @file_data('pylint_test_list.json')
def test_pylint_parser_count_violations(self, value): def test_pylint_parser_count_violations(self, value):
# Tests: """
# * Different types of violations Tests:
# * One violation covering multiple lines - Different types of violations
- One violation covering multiple lines
"""
with open(self.f.name, 'w') as f: with open(self.f.name, 'w') as f:
f.write(value) f.write(value)
num = pavelib.quality._count_pylint_violations(f.name) num = pavelib.quality._count_pylint_violations(f.name)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment