Skip to content

Commit

Permalink
pass a tuple again
Browse files Browse the repository at this point in the history
  • Loading branch information
Matt711 committed Nov 8, 2024
1 parent ab03a4d commit 1d0fb74
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ def test_catboost_with_categorical_features():
pd.DataFrame(rng.standard_normal((100, 5))),
pd.Series(rng.standard_normal(100)),
),
(rng.standard_normal(100, 5), rng.standard_normal(100)),
(rng.standard_normal((100, 5)), rng.standard_normal(100)),
],
)
def test_catboost_train_test_split(X, y):
Expand Down

0 comments on commit 1d0fb74

Please sign in to comment.