Skip to content

Commit

Permalink
fixup! feat: workspace symbols
Browse files Browse the repository at this point in the history
  • Loading branch information
mhanberg committed Jun 25, 2023
1 parent 0086043 commit 7d2c204
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions test/next_ls/runtime_test.exs
Original file line number Diff line number Diff line change
Expand Up @@ -73,9 +73,9 @@ defmodule NextLs.RuntimeTest do
] = Runtime.compile(pid)

if Version.match?(System.version(), ">= 1.15.0") do
assert position == {2, 11}
assert position == {4, 11}
else
assert position == 2
assert position == 4
end

File.write!(file, """
Expand Down
4 changes: 2 additions & 2 deletions test/next_ls_test.exs
Original file line number Diff line number Diff line change
Expand Up @@ -169,8 +169,8 @@ defmodule NextLSTest do
"message" =>
"variable \"arg1\" is unused (if the variable is not meant to be used, prefix it with an underscore)",
"range" => %{
"start" => %{"line" => 1, "character" => ^char},
"end" => %{"line" => 1, "character" => 999}
"start" => %{"line" => 3, "character" => ^char},
"end" => %{"line" => 3, "character" => 999}
}
}
]
Expand Down

0 comments on commit 7d2c204

Please sign in to comment.