Skip to content

Commit

Permalink
Fixing tests after change to how pylintrc config is loaded
Browse files Browse the repository at this point in the history
  • Loading branch information
carlio committed Feb 28, 2022
1 parent f1590d3 commit dbcd43c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/tools/pylint/test_pylint_tool.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ def test_use_pylint_default_path_finder(self):
found_files = find_python([], [root], False, workdir)
pylint_tool.configure(config, found_files)
messages = pylint_tool.run(found_files)
self.assertEqual(messages[0].code, "no-name-in-module")
self.assertEqual(messages, [])

def test_use_prospector_default_path_finder(self):
workdir = "tests/tools/pylint/testpath/absolute-import/"
Expand Down

0 comments on commit dbcd43c

Please sign in to comment.