From 3b80b2e05a075e8de7149035643b2498e5a25c02 Mon Sep 17 00:00:00 2001 From: Isac Yoo Date: Wed, 13 Nov 2019 11:58:49 +0900 Subject: [PATCH] Remove redundant sample data --- tests/unit/test_file_processor.py | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/tests/unit/test_file_processor.py b/tests/unit/test_file_processor.py index 9acd5ae..f38568c 100644 --- a/tests/unit/test_file_processor.py +++ b/tests/unit/test_file_processor.py @@ -76,16 +76,9 @@ def test_should_ignore_file(lines, expected, default_options): assert file_processor.should_ignore_file() is expected -@pytest.mark.parametrize('lines', [ - ['#!/usr/bin/python', '# flake8: noqa', 'a = 1'], - ['#!/usr/bin/python', '# flake8:noqa', 'a = 1'], - ['# flake8: noqa', '#!/usr/bin/python', 'a = 1'], - ['# flake8:noqa', '#!/usr/bin/python', 'a = 1'], - ['#!/usr/bin/python', 'a = 1', '# flake8: noqa'], - ['#!/usr/bin/python', 'a = 1', '# flake8:noqa'], -]) -def test_should_ignore_file_to_handle_disable_noqa(lines, default_options): +def test_should_ignore_file_to_handle_disable_noqa(default_options): """Verify that we ignore a file if told to.""" + lines = ['# flake8: noqa'] file_processor = processor.FileProcessor('-', default_options, lines) assert file_processor.should_ignore_file() is True default_options.disable_noqa = True