summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPierre Sassoulas <pierre.sassoulas@gmail.com>2021-11-22 12:49:23 +0100
committerPierre Sassoulas <pierre.sassoulas@gmail.com>2021-11-22 12:49:23 +0100
commitc556a5b07480c31a7ad4ebae05e23d3da9ef1345 (patch)
tree89b0bdb346f51f0feed5dff9ce24bed9077e6914
parentf884802d20c9c02a14c5ca14c46ef3e7463c4ff3 (diff)
downloadpylint-git-c556a5b07480c31a7ad4ebae05e23d3da9ef1345.tar.gz
Clearer explanation for out file name
-rw-r--r--pylint/testutils/configuration_test.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/pylint/testutils/configuration_test.py b/pylint/testutils/configuration_test.py
index 2a894284c..998280974 100644
--- a/pylint/testutils/configuration_test.py
+++ b/pylint/testutils/configuration_test.py
@@ -86,8 +86,8 @@ def get_expected_output(
"""Get the expected output of a functional test."""
exit_code = 0
msg = (
- "we expect a single file of the form "
- "'filename_dot_expected_error_code_dot_out.32.out'"
+ "we expect a single file of the form 'filename.32.out' with 'filename' the "
+ "stem of the configuration file, and '32' the expected error code."
)
possible_out_files = get_related_files(configuration_path, suffix_filter="out")
if len(possible_out_files) > 1: