Skip to content

Commit

Permalink
get_lazy -> get
Browse files Browse the repository at this point in the history
  • Loading branch information
SteffenDE committed Dec 29, 2024
1 parent 5c01828 commit 972bb82
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/mix/lib/mix/tasks/test.ex
Original file line number Diff line number Diff line change
Expand Up @@ -753,7 +753,7 @@ defmodule Mix.Tasks.Test do
[
&String.ends_with?(&1, "_helper.exs"),
fn file -> Enum.any?(elixirc_paths, &String.starts_with?(file, &1)) end
] ++ Keyword.get_lazy(project, :test_ignore_filters, [])
] ++ Keyword.get(project, :test_ignore_filters, [])

{to_load, to_ignore, to_warn} =
for file <- potential_test_files, reduce: {[], [], []} do
Expand Down

0 comments on commit 972bb82

Please sign in to comment.