Skip to content

Commit fd93543

Browse files
authored
Merge pull request #10 from glemaitre/clean_print
MAINT clean print in test
2 parents b7aab19 + 43e3682 commit fd93543

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

tests/test_titanic.py

-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ def test_onehot(df):
2727

2828
@pytest.mark.parametrize("df", [pd.read_csv(titanic_path), pl.read_csv(titanic_path)])
2929
def test_minhash(df):
30-
print(df)
3130
assert minhash("sex", n_components=10).fit_transform(df).shape[1] == 10
3231
assert minhash("name", n_components=10).fit_transform(df).shape[1] == 10
3332
assert minhash("sex", "name", n_components=10).fit_transform(df).shape[1] == 20

0 commit comments

Comments
 (0)