diff options
Diffstat (limited to 'testsuite/pyunit/lsp/004errprj/cmds.json')
-rw-r--r-- | testsuite/pyunit/lsp/004errprj/cmds.json | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/testsuite/pyunit/lsp/004errprj/cmds.json b/testsuite/pyunit/lsp/004errprj/cmds.json index 813a6cb50..63f9892fb 100644 --- a/testsuite/pyunit/lsp/004errprj/cmds.json +++ b/testsuite/pyunit/lsp/004errprj/cmds.json @@ -5,8 +5,8 @@ "method": "initialize", "params": { "processId": 2, - "rootPath": ".", - "rootUri": "file://.", + "rootPath": "@ROOT@", + "rootUri": "file://@ROOT@/004errprj", "capabilities": { "workspace": { "applyEdit": true, @@ -154,7 +154,7 @@ "trace": "off", "workspaceFolders": [ { - "uri": "file:///.", + "uri": "file://@ROOT@/004errprj", "name": "workspacename" } ] @@ -170,7 +170,7 @@ "method": "textDocument/didOpen", "params": { "textDocument": { - "uri": "file:///../files/hello.vhdl", + "uri": "file://@ROOT@/files/hello.vhdl", "languageId": "vhdl", "version": 1, "text": "\n-- Hello world program\nuse std.textio.all; -- Imports the standard textio package.\n\n-- Defines a design entity, without any ports.\nentity hello_world is\nend hello_world;\n\narchitecture behaviour of hello_world is\nbegin\n process\n variable l : line;\n begin\n write (l, String'(\"Hello world!\"));\n writeline (output, l);\n wait;\n end process;\nend behaviour;\n\n" |