Skip to content

Commit

Permalink
Merge branch 'heterogenousmetaestimator-anytuplelength' of https://gi…
Browse files Browse the repository at this point in the history
…thub.com/sktime/skbase into heterogenousmetaestimator-anytuplelength
  • Loading branch information
fkiraly committed Aug 14, 2023
2 parents 184da58 + 24d8b0b commit 7657012
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion skbase/tests/test_meta.py
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,16 @@ def test_metaestimator_composite(long_steps):
meta_est_params = meta_est.get_params()
assert isinstance(meta_est_params, dict)
expected_keys = [
"a", "b", "c", "steps", "foo", "bar", "foo__a", "foo__b", "bar__a", "bar__b"
"a",
"b",
"c",
"steps",
"foo",
"bar",
"foo__a",
"foo__b",
"bar__a",
"bar__b",
]
assert set(meta_est_params.keys()) == set(expected_keys)

Expand Down

0 comments on commit 7657012

Please sign in to comment.