diff options
author | Michael Lingelbach <m.j.lbach@gmail.com> | 2021-07-14 12:20:13 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-14 12:20:13 -0700 |
commit | 19a2e59f7e80f87704ce135fff53e0efdec30432 (patch) | |
tree | 08f76998adfe570b7e7a8dc85833f3fc4ae856cf /test/functional/plugin/lsp/diagnostic_spec.lua | |
parent | c31bc6ea731567db86cbe91f7c62d89c612cd3ac (diff) | |
parent | 1dab9357de586b08431175f19a1b44bb294866d6 (diff) | |
download | rneovim-19a2e59f7e80f87704ce135fff53e0efdec30432.tar.gz rneovim-19a2e59f7e80f87704ce135fff53e0efdec30432.tar.bz2 rneovim-19a2e59f7e80f87704ce135fff53e0efdec30432.zip |
Merge pull request #15017 from donbex/local-file-uri
fix(lsp): accept file URIs without a hostname
Diffstat (limited to 'test/functional/plugin/lsp/diagnostic_spec.lua')
-rw-r--r-- | test/functional/plugin/lsp/diagnostic_spec.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/plugin/lsp/diagnostic_spec.lua b/test/functional/plugin/lsp/diagnostic_spec.lua index 962028e7e1..c1c76c3916 100644 --- a/test/functional/plugin/lsp/diagnostic_spec.lua +++ b/test/functional/plugin/lsp/diagnostic_spec.lua @@ -49,7 +49,7 @@ describe('vim.lsp.diagnostic', function() end ]] - fake_uri = "file://fake/uri" + fake_uri = "file:///fake/uri" exec_lua([[ fake_uri = ... |