Skip to content

Commit 56ff581

Browse files
committed
Fix scenario typo
1 parent 376a981 commit 56ff581

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/benchee/suite.ex

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ if Code.ensure_loaded?(Table.Reader) do
107107
config_percentiles = suite.configuration.percentiles
108108

109109
Enum.map_reduce(suite.scenarios, 0, fn %Scenario{} = scenario, count ->
110-
secenario_data =
110+
scenario_data =
111111
Enum.flat_map(measurements_processed, fn measurement_type ->
112112
scenario
113113
|> Scenario.measurement_data(measurement_type)
@@ -122,7 +122,7 @@ if Code.ensure_loaded?(Table.Reader) do
122122
name -> name
123123
end
124124

125-
row = [scenario.name, input_name] ++ secenario_data
125+
row = [scenario.name, input_name] ++ scenario_data
126126

127127
{row, count + 1}
128128
end)

0 commit comments

Comments
 (0)