diff options
author | w0rp <devw0rp@gmail.com> | 2017-11-05 21:41:53 +0000 |
---|---|---|
committer | w0rp <devw0rp@gmail.com> | 2017-11-05 21:41:53 +0000 |
commit | fa7d041c26aa6616c13a62274a7fc8458f6096dd (patch) | |
tree | c6e872d4254c0af33aa1eb5f270f5406abb33875 /test/lsp | |
parent | 3c8e6ed51c4dcae759231d3bd8baff18da30e120 (diff) | |
download | ale-fa7d041c26aa6616c13a62274a7fc8458f6096dd.zip |
Fix #1085 - Add a final newline character to tsserver and LSP messages
Diffstat (limited to 'test/lsp')
-rw-r--r-- | test/lsp/test_lsp_client_messages.vader | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/lsp/test_lsp_client_messages.vader b/test/lsp/test_lsp_client_messages.vader index 7ec905cc..a7660ce3 100644 --- a/test/lsp/test_lsp_client_messages.vader +++ b/test/lsp/test_lsp_client_messages.vader @@ -45,7 +45,7 @@ Execute(ale#lsp#message#DidOpen() should return correct messages): \ 'uri': ale#path#ToURI(g:dir . '/foo/bar.ts'), \ 'languageId': 'typescript', \ 'version': 12, - \ 'text': "foo()\nbar()\nbaz()", + \ 'text': "foo()\nbar()\nbaz()\n", \ }, \ } \ ], @@ -63,7 +63,7 @@ Execute(ale#lsp#message#DidChange() should return correct messages): \ 'uri': ale#path#ToURI(g:dir . '/foo/bar.ts'), \ 'version': 34, \ }, - \ 'contentChanges': [{'text': "foo()\nbar()\nbaz()"}], + \ 'contentChanges': [{'text': "foo()\nbar()\nbaz()\n"}], \ } \ ], \ ale#lsp#message#DidChange(bufnr('')) @@ -134,7 +134,7 @@ Execute(ale#lsp#tsserver_message#Change() should return correct messages): \ 'offset': 1, \ 'endLine': 1073741824, \ 'endOffset': 1, - \ 'insertString': "foo()\nbar()\nbaz()", + \ 'insertString': "foo()\nbar()\nbaz()\n", \ } \ ], \ ale#lsp#tsserver_message#Change(bufnr('')) |