Skip to content

Commit

Permalink
[BUG] correct parameter name in TestAllObjects all_objects call (#…
Browse files Browse the repository at this point in the history
…236)

This corrects the parameter name in `TestAllObjects` `all_objects` call,
from `exclude_estimators` to `exclude_objects`.
  • Loading branch information
fkiraly authored Oct 15, 2023
1 parent e51fd36 commit 8b09e7f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion skbase/testing/test_all_objects.py
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ def _all_objects(self):
return all_objects(
object_types=getattr(self, "object_type_filter", None),
return_names=False,
exclude_estimators=self.exclude_objects,
exclude_objects=self.exclude_objects,
package_name=self.package_name,
)

Expand Down

0 comments on commit 8b09e7f

Please sign in to comment.