Skip to content

Commit

Permalink
Fix classification tests
Browse files Browse the repository at this point in the history
  • Loading branch information
otaviocv committed Nov 7, 2023
1 parent 15183e5 commit 1961853
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/training/test_classification.py
Original file line number Diff line number Diff line change
Expand Up @@ -507,7 +507,7 @@ def test_lgbm_classification_learner_params():
}
)

lgbm_dataset = lightgbm.Dataset(df[features].values, label=df[target], silent=True)
lgbm_dataset = lightgbm.Dataset(df[features].values, label=df[target])

mock_lgbm = MagicMock()
mock_lgbm.predict.return_value = df_result["prediction"]
Expand Down

0 comments on commit 1961853

Please sign in to comment.