Skip to content

Commit ef46958

Browse files
committed
exclude tests
1 parent 5f2a694 commit ef46958

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

test/elixir_sense/core/metadata_builder/error_recovery_test.exs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ defmodule ElixirSense.Core.MetadataBuilder.ErrorRecoveryTest do
122122
end
123123
end
124124

125-
if Version.match?(System.version(), ">= 1.14.0") do
125+
if Version.match?(System.version(), ">= 1.15.0") do
126126
test "invalid number of args with when" do
127127
code = """
128128
case nil do 0, z when not is_nil(z) -> \
@@ -132,7 +132,7 @@ defmodule ElixirSense.Core.MetadataBuilder.ErrorRecoveryTest do
132132
end
133133
end
134134

135-
if Version.match?(System.version(), ">= 1.14.0") do
135+
if Version.match?(System.version(), ">= 1.15.0") do
136136
test "invalid number of args" do
137137
code = """
138138
case nil do 0, z -> \
@@ -215,7 +215,7 @@ defmodule ElixirSense.Core.MetadataBuilder.ErrorRecoveryTest do
215215
end
216216
end
217217

218-
if Version.match?(System.version(), ">= 1.14.0") do
218+
if Version.match?(System.version(), ">= 1.15.0") do
219219
test "invalid number of args" do
220220
code = """
221221
cond do 0, z -> \
@@ -522,7 +522,7 @@ defmodule ElixirSense.Core.MetadataBuilder.ErrorRecoveryTest do
522522
end
523523
end
524524

525-
if Version.match?(System.version(), ">= 1.14.0") do
525+
if Version.match?(System.version(), ">= 1.15.0") do
526526
test "cursor in right side of catch clause 2 arg" do
527527
code = """
528528
try do
@@ -882,7 +882,7 @@ defmodule ElixirSense.Core.MetadataBuilder.ErrorRecoveryTest do
882882
end
883883
end
884884

885-
if Version.match?(System.version(), ">= 1.14.0") do
885+
if Version.match?(System.version(), ">= 1.15.0") do
886886
test "cursor in do block reduce right side of clause too many args" do
887887
code = """
888888
for x <- [], reduce: %{} do

0 commit comments

Comments
 (0)