diff options
Diffstat (limited to 'test/tclient/tests/folders-with-single-file.lua')
-rw-r--r-- | test/tclient/tests/folders-with-single-file.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/tclient/tests/folders-with-single-file.lua b/test/tclient/tests/folders-with-single-file.lua index e77535c9..2a5db70b 100644 --- a/test/tclient/tests/folders-with-single-file.lua +++ b/test/tclient/tests/folders-with-single-file.lua @@ -45,7 +45,7 @@ print(x) client:notify('textDocument/didOpen', { textDocument = { - uri = 'test://single-file.lua', + uri = 'file://single-file.lua', languageId = 'lua', version = 0, text = [[ @@ -58,7 +58,7 @@ print(x) ws.awaitReady(nil) local locations = client:awaitRequest('textDocument/definition', { - textDocument = { uri = 'test://single-file.lua' }, + textDocument = { uri = 'file://single-file.lua' }, position = { line = 1, character = 0 }, }) |