Skip to content

Commit f89c55f

Browse files
committed
Fix warning in elixir 1.17
1 parent c355493 commit f89c55f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/ex_unit_notifier.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,5 +74,5 @@ defmodule ExUnitNotifier do
7474
defp notifier, do: Application.get_env(:ex_unit_notifier, :notifier, first_available_notifier())
7575

7676
defp first_available_notifier,
77-
do: @notifiers |> Enum.find(fn notifier -> notifier.available? end)
77+
do: @notifiers |> Enum.find(fn notifier -> notifier.available?() end)
7878
end

0 commit comments

Comments
 (0)