Skip to content

Commit

Permalink
Fix warning in elixir 1.17
Browse files Browse the repository at this point in the history
  • Loading branch information
navinpeiris committed Jun 14, 2024
1 parent c355493 commit f89c55f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/ex_unit_notifier.ex
Original file line number Diff line number Diff line change
Expand Up @@ -74,5 +74,5 @@ defmodule ExUnitNotifier do
defp notifier, do: Application.get_env(:ex_unit_notifier, :notifier, first_available_notifier())

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

0 comments on commit f89c55f

Please sign in to comment.