Skip to content

Commit

Permalink
Fixes this test.
Browse files Browse the repository at this point in the history
Not clear to me why "max" ever was "amax", but it is no longer.
  • Loading branch information
arokem committed Jan 14, 2024
1 parent 399d06f commit 8fe4d60
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion groupyr/tests/test_transform.py
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,7 @@ def test_GroupAggregator():
feature_names_ref = []
for grp in group_names:
feature_names_ref.append("__".join([grp, "mean"]))
feature_names_ref.append("__".join([grp, "amax"]))
feature_names_ref.append("__".join([grp, "max"]))

assert ga.feature_names_out_ == feature_names_ref # nosec
X_ref = np.array([np.array([1, 2, 4, 5, 7, 8, 9, 9]) + i * 10 for i in range(10)])
Expand Down

0 comments on commit 8fe4d60

Please sign in to comment.