Skip to content

Commit 847ce3a

Browse files
committed
fix tests
1 parent 490568a commit 847ce3a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/system/small/test_series.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2132,7 +2132,7 @@ def test_drop_duplicates(scalars_df_index, scalars_pandas_df_index, keep, col_na
21322132
],
21332133
)
21342134
def test_unique(scalars_df_index, scalars_pandas_df_index, col_name):
2135-
bf_uniq = scalars_df_index[col_name].unique().to_numpy()
2135+
bf_uniq = scalars_df_index[col_name].unique().to_numpy(na_value=None)
21362136
pd_uniq = scalars_pandas_df_index[col_name].unique()
21372137
numpy.array_equal(pd_uniq, bf_uniq)
21382138

0 commit comments

Comments
 (0)