Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tests/test_model_builders.py
Original file line number Diff line number Diff line change
Expand Up @@ -2184,7 +2184,7 @@ def test_logreg_builder_sequential_calls():
),
]
if not sklearn_check_version("1.8")
else [(LogisticRegression(solver="liblinear"), 2)]
Copy link
Contributor

@avolkov-intel avolkov-intel Nov 26, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why do we need to remove this test, I think it's not deprecated

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The test is checking that it fails to convert the model. This would work fine.

else []
)
+ [
# case below might change in the future if sklearn improves their modules
Expand Down
Loading