summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/unit/test_utils.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/tests/unit/test_utils.py b/tests/unit/test_utils.py
index 20c5fb9..b4bd1a1 100644
--- a/tests/unit/test_utils.py
+++ b/tests/unit/test_utils.py
@@ -22,11 +22,6 @@ RELATIVE_PATHS = ["flake8", "pep8", "pyflakes", "mccabe"]
("E123,W234,,E206,,", ["E123", "W234", "E206"]),
("E123, W234,, E206,,", ["E123", "W234", "E206"]),
("E123,,W234,,E206,,", ["E123", "W234", "E206"]),
- (["E123", "W234", "E206"], ["E123", "W234", "E206"]),
- (["E123", "\n\tW234", "\n E206"], ["E123", "W234", "E206"]),
- (["E123", "\n\tW234", "\n E206", "\n"], ["E123", "W234", "E206"]),
- (["E123", "\n\tW234", "", "\n E206", "\n"], ["E123", "W234", "E206"]),
- (["E123", "\n\tW234", "", "\n E206", ""], ["E123", "W234", "E206"]),
])
def test_parse_comma_separated_list(value, expected):
"""Verify that similar inputs produce identical outputs."""