Skip to content

Commit

Permalink
fix: typo
Browse files Browse the repository at this point in the history
  • Loading branch information
bokajgd committed Nov 21, 2024
1 parent 5bd8ea2 commit 9e59940
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/timeseriesflattener/aggregators_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ def expected_output(self) -> pl.DataFrame:
aggregator=CountAggregator(), input_values=[1, 2], expected_output_values=[2]
),
SingleVarAggregatorExample(
aggregator=CountAggregator(), input_values=[1, 2, 1], expected_output_values=[2]
aggregator=UniqueCountAggregator(), input_values=[1, 2, 1], expected_output_values=[2]
),
SingleVarAggregatorExample(
aggregator=SumAggregator(), input_values=[1, 2], expected_output_values=[3]
Expand Down

0 comments on commit 9e59940

Please sign in to comment.