Skip to content

Commit

Permalink
Fixed
Browse files Browse the repository at this point in the history
Signed-off-by: Adam Li <[email protected]>
  • Loading branch information
adam2392 committed Aug 16, 2023
1 parent 1bfffb7 commit 338428a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sktree/tree/tests/test_tree.py
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ def test_pickle_splitters():
def test_sklearn_compatible_estimator(estimator, check):
# TODO: remove when we can replicate the CI error...
if isinstance(
estimator, [PatchObliqueDecisionTreeClassifier, ExtraObliqueDecisionTreeClassifier]
estimator, (PatchObliqueDecisionTreeClassifier, ExtraObliqueDecisionTreeClassifier)
) and check.func.__name__ in ["check_fit_score_takes_y"]:
pytest.skip()
check(estimator)
Expand Down

0 comments on commit 338428a

Please sign in to comment.