summaryrefslogtreecommitdiff
path: root/tests/testutils
diff options
context:
space:
mode:
authorDaniƫl van Noord <13665637+DanielNoord@users.noreply.github.com>2021-11-22 22:40:26 +0100
committerGitHub <noreply@github.com>2021-11-22 22:40:26 +0100
commitee70d41881600b67c3d98d41c060b81a22a45210 (patch)
tree603f49c38007f4a52410059d4796c5185574844a /tests/testutils
parente4fd27544c04c9637b89fb678c1df19166506a10 (diff)
downloadpylint-git-ee70d41881600b67c3d98d41c060b81a22a45210.tar.gz
Add ``end_lineno`` and ``end_col_offset`` to ``MessageLocationTuple`` (#5343)
Diffstat (limited to 'tests/testutils')
-rw-r--r--tests/testutils/test_output_line.py7
1 files changed, 1 insertions, 6 deletions
diff --git a/tests/testutils/test_output_line.py b/tests/testutils/test_output_line.py
index d13db4978..928083508 100644
--- a/tests/testutils/test_output_line.py
+++ b/tests/testutils/test_output_line.py
@@ -21,12 +21,7 @@ def message() -> Callable:
symbol="missing-docstring",
msg_id="C0123",
location=MessageLocationTuple(
- "abspath",
- "path",
- "module",
- "obj",
- 1,
- 2,
+ "abspath", "path", "module", "obj", 1, 2, 1, 3
),
msg="msg",
confidence=confidence,