Make pylint happier

This commit is contained in:
Ian Cordasco 2016-02-19 15:10:46 -06:00
parent 85c199ea34
commit 69b8be71dc
11 changed files with 64 additions and 47 deletions

View file

@ -68,11 +68,11 @@ def test_cli_config():
os.path.abspath('tox.ini'),
os.path.abspath('.flake8')]),
])
def test_generate_possible_local_config_files(args, expected):
def test_generate_possible_local_files(args, expected):
"""Verify generation of all possible config paths."""
finder = config.ConfigFileFinder('flake8', args, [])
assert (list(finder.generate_possible_local_config_files()) ==
assert (list(finder.generate_possible_local_files()) ==
expected)