Skip to content

Commit cb13cd7

Browse files
committed
Fix credo which magically started failing :thinking-face:
1 parent 8353dad commit cb13cd7

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

lib/benchee/benchmark/runner.ex

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,10 @@ defmodule Benchee.Benchmark.Runner do
66
# This module actually runs our benchmark scenarios, adding information about
77
# run time and memory usage to each scenario.
88

9+
alias Benchee.Benchmark
910
alias Benchee.Benchmark.BenchmarkConfig
10-
alias Benchee.{Benchmark, Scenario, Utility.Parallel}
11+
alias Benchee.Scenario
12+
alias Benchee.Utility.Parallel
1113

1214
alias Benchmark.{
1315
Collect,

lib/benchee/formatters/console.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ defmodule Benchee.Formatters.Console do
3333

3434
@behaviour Benchee.Formatter
3535

36-
alias Benchee.Suite
3736
alias Benchee.Formatters.Console.{Memory, Reductions, RunTime}
37+
alias Benchee.Suite
3838

3939
@doc """
4040
Formats the benchmark statistics to a report suitable for output on the CLI.

0 commit comments

Comments
 (0)