Skip to content

Commit

Permalink
fix name of _drop_level_feats in test
Browse files Browse the repository at this point in the history
  • Loading branch information
elray1 committed Nov 7, 2024
1 parent e488f6a commit 33d721e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/unit/gbqr/test_drop_level_feats.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from idmodels.preprocess import drop_level_feats
from idmodels.preprocess import _drop_level_feats


def test_drop_level_feats():
Expand Down Expand Up @@ -51,7 +51,7 @@ def test_drop_level_feats():
"inc_trans_cs_taylor_d1_c1_w5t_sNone_lag1", "inc_trans_cs_taylor_d1_c1_w5t_sNone_lag2",
"horizon"]

actual = drop_level_feats(in_feats)
actual = _drop_level_feats(in_feats)

assert len(actual) == len(expected)
assert not set(actual) - set(expected)

0 comments on commit 33d721e

Please sign in to comment.