diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-14 20:17:17 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-14 20:17:17 +0000 |
commit | 4b6840b31a15c9bae8d00652eee252ab0b7ab427 (patch) | |
tree | 50798f1322b54d95952d435f4e93eb4fb178f975 /tests/lsp_tests/lsp_tutil.py | |
parent | Adding upstream version 0.1.25. (diff) | |
download | debputy-4b6840b31a15c9bae8d00652eee252ab0b7ab427.tar.xz debputy-4b6840b31a15c9bae8d00652eee252ab0b7ab427.zip |
Adding upstream version 0.1.26.upstream/0.1.26
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'tests/lsp_tests/lsp_tutil.py')
-rw-r--r-- | tests/lsp_tests/lsp_tutil.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/tests/lsp_tests/lsp_tutil.py b/tests/lsp_tests/lsp_tutil.py index 1e509af..2873f72 100644 --- a/tests/lsp_tests/lsp_tutil.py +++ b/tests/lsp_tests/lsp_tutil.py @@ -30,10 +30,12 @@ def put_doc_with_cursor( uri: str, language_id: str, content: str, - *, - doc_version: int = 1, ) -> "Position": cleaned_content, cursor_pos = _locate_cursor(content) + doc_version = 1 + existing = ls.workspace.text_documents.get(uri) + if existing is not None: + doc_version = existing.version + 1 ls.workspace.put_text_document( TextDocumentItem( uri, |