Skip to content

Commit 32692f1

Browse files
committed
Fix test on Erlang master
1 parent f80bd3c commit 32692f1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/elixir/test/elixir/kernel/errors_test.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -828,7 +828,7 @@ defmodule Kernel.ErrorsTest do
828828
"nofile:3: function exit/1 imported from both :erlang and Kernel, call is ambiguous",
829829
'''
830830
defmodule Kernel.ErrorsTest.FunctionImportConflict do
831-
import :erlang, warn: false
831+
import :erlang, only: [exit: 1], warn: false
832832
def foo, do: exit(:test)
833833
end
834834
'''

0 commit comments

Comments
 (0)