Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions test/elixir_sense/core/source_test.exs
Original file line number Diff line number Diff line change
Expand Up @@ -879,7 +879,7 @@ defmodule ElixirSense.Core.SourceTest do
assert which_struct(code, MyMod) == {:map, [:qwe], {:variable, :asd, :any}}
end

test "patern match with _" do
test "pattern match with _" do
code = """
defmodule MyMod do
def my_func(%_{
Expand All @@ -888,7 +888,7 @@ defmodule ElixirSense.Core.SourceTest do
assert which_struct(code, MyMod) == {nil, [], false, nil}
end

test "patern match with variable name" do
test "pattern match with variable name" do
code = """
defmodule MyMod do
def my_func(%my_var{
Expand Down
Loading