Skip to content

Commit

Permalink
Merge pull request #312 from redwirelabs/fix-map-field-warnings
Browse files Browse the repository at this point in the history
Fix map.field notation warnings
  • Loading branch information
antonmi authored Feb 26, 2025
2 parents 9bcba3c + 19c3375 commit 36bf824
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/espec/suite_runner.ex
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ defmodule ESpec.SuiteRunner do
end

defp run_module_examples(module, opts, shuffle) do
examples_to_run = filter(module.examples, opts)
examples_to_run = filter(module.examples(), opts)

if shuffle do
run_examples(Enum.shuffle(examples_to_run))
Expand Down
2 changes: 1 addition & 1 deletion lib/mix/tasks/espec.ex
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ defmodule Mix.Tasks.Espec do
cover[:tool].start(Mix.Project.compile_path(project), cover)
end

Mix.shell().print_app
Mix.shell().print_app()
Mix.Task.run("app.start", args)

ensure_espec_loaded!()
Expand Down

0 comments on commit 36bf824

Please sign in to comment.