diff options
author | Dalius Dobravolskas <dalius.dobravolskas@gmail.com> | 2020-11-21 01:26:16 +0000 |
---|---|---|
committer | w0rp <devw0rp@gmail.com> | 2020-11-21 01:27:27 +0000 |
commit | d0b5909fd8cb96fa65363af44d02eb0038c6112c (patch) | |
tree | 6b373447af10149fc1b56e0d08c02cad8a681df2 /test | |
parent | 7c04ee5c200b64ef0886677216fbec1303ec9475 (diff) | |
download | ale-d0b5909fd8cb96fa65363af44d02eb0038c6112c.zip |
#3442 Fix code fix clangd issue
Diffstat (limited to 'test')
-rw-r--r-- | test/test_codefix.vader | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test_codefix.vader b/test/test_codefix.vader index deb97256..fc5470aa 100644 --- a/test/test_codefix.vader +++ b/test/test_codefix.vader @@ -508,7 +508,7 @@ Execute(LSP code action requests should be sent): \ [ \ [0, 'textDocument/codeAction', { \ 'context': { - \ 'diagnostics': [{'range': {'end': {'character': 5, 'line': 1}, 'start': {'character': 4, 'line': 1}}, 'code': 2304, 'message': 'oops'}] + \ 'diagnostics': [{'range': {'end': {'character': 6, 'line': 1}, 'start': {'character': 4, 'line': 1}}, 'code': 2304, 'message': 'oops'}] \ }, \ 'range': {'end': {'character': 5, 'line': 1}, 'start': {'character': 4, 'line': 1}}, \ 'textDocument': {'uri': ale#path#ToURI(expand('%:p'))} @@ -540,7 +540,7 @@ Execute(LSP code action requests should be sent only for error with code): \ [ \ [0, 'textDocument/codeAction', { \ 'context': { - \ 'diagnostics': [{'range': {'end': {'character': 5, 'line': 1}, 'start': {'character': 4, 'line': 1}}, 'code': 2304, 'message': 'oops'}] + \ 'diagnostics': [{'range': {'end': {'character': 6, 'line': 1}, 'start': {'character': 4, 'line': 1}}, 'code': 2304, 'message': 'oops'}] \ }, \ 'range': {'end': {'character': 5, 'line': 1}, 'start': {'character': 4, 'line': 1}}, \ 'textDocument': {'uri': ale#path#ToURI(expand('%:p'))} |