Skip to content

Commit 7d2c204

Browse files
committed
fixup! feat: workspace symbols
1 parent 0086043 commit 7d2c204

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Diff for: test/next_ls/runtime_test.exs

+2-2
Original file line numberDiff line numberDiff line change
@@ -73,9 +73,9 @@ defmodule NextLs.RuntimeTest do
7373
] = Runtime.compile(pid)
7474

7575
if Version.match?(System.version(), ">= 1.15.0") do
76-
assert position == {2, 11}
76+
assert position == {4, 11}
7777
else
78-
assert position == 2
78+
assert position == 4
7979
end
8080

8181
File.write!(file, """

Diff for: test/next_ls_test.exs

+2-2
Original file line numberDiff line numberDiff line change
@@ -169,8 +169,8 @@ defmodule NextLSTest do
169169
"message" =>
170170
"variable \"arg1\" is unused (if the variable is not meant to be used, prefix it with an underscore)",
171171
"range" => %{
172-
"start" => %{"line" => 1, "character" => ^char},
173-
"end" => %{"line" => 1, "character" => 999}
172+
"start" => %{"line" => 3, "character" => ^char},
173+
"end" => %{"line" => 3, "character" => 999}
174174
}
175175
}
176176
]

0 commit comments

Comments
 (0)