diff options
Diffstat (limited to 'testsuite/pyunit/lsp/006opterr/cmds.json')
-rw-r--r-- | testsuite/pyunit/lsp/006opterr/cmds.json | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/testsuite/pyunit/lsp/006opterr/cmds.json b/testsuite/pyunit/lsp/006opterr/cmds.json index 1d95b1da4..cc96c55f4 100644 --- a/testsuite/pyunit/lsp/006opterr/cmds.json +++ b/testsuite/pyunit/lsp/006opterr/cmds.json @@ -240,7 +240,7 @@ "method": "textDocument/didOpen", "params": { "textDocument": { - "uri": "file://files/heartbeat.vhdl", + "uri": "file://../files/heartbeat.vhdl", "languageId": "vhdl", "version": 1, "text": "\nlibrary ieee;\nuse ieee.std_logic_1164.all;\n\nentity heartbeat is\n port ( clk: out std_logic);\nend heartbeat;\n\narchitecture behaviour of heartbeat\nis\n constant clk_period : time := 10 ns;\nbegin\n -- Clock process definition\n clk_process: process\n begin\n clk <= '0';\n wait for clk_period/2;\n clk <= '1';\n wait for clk_period/2;\n end process;\nend behaviour;\n\n" @@ -253,7 +253,7 @@ "method": "textDocument/documentSymbol", "params": { "textDocument": { - "uri": "file://files/heartbeat.vhdl" + "uri": "file://../files/heartbeat.vhdl" } } } |