Skip to content

Commit 6650422

Browse files
committed
Clean up version check
1 parent 27ad0dc commit 6650422

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/postgrex_test.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ defmodule PostgrexTest do
1111
end
1212

1313
# This test fails due to a bug betweem Elixir and Erlang in earlier versions of Elixir.
14-
if Version.match?(Version.parse!(System.version()), Version.parse_requirement!(">= 1.17.2")) do
14+
if Version.match?(System.version(), ">= 1.17.2") do
1515
test "start_link/2 detects invalid search path" do
1616
# invalid argument
1717
Process.flag(:trap_exit, true)

0 commit comments

Comments
 (0)