Skip to content

Commit 455402b

Browse files
committed
fix failing pylint test #661
1 parent c3cab77 commit 455402b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/plugins/test_pylint_lint.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ def test_pylint(config):
4545
msg = '[unused-import] Unused import sys'
4646
unused_import = [d for d in diags if d['message'] == msg][0]
4747

48-
assert unused_import['range']['start'] == {'line': 0, 'character': 0}
48+
assert unused_import['range']['start'] == {'line': 0, 'character': 12}
4949
assert unused_import['severity'] == lsp.DiagnosticSeverity.Warning
5050

5151

0 commit comments

Comments
 (0)