Skip to content

Commit

Permalink
Fix: polars test
Browse files Browse the repository at this point in the history
  • Loading branch information
janpipek committed Jul 4, 2024
1 parent c4a85c2 commit 66b8d6a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/compat/test_polars.py
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ def test_with_series(self, dropna: bool, values):
# Null type was a bit of problem
pl_input = polars.Series([], dtype=polars.Float64)
else:
pl_input = polars.Series(values=values)
pl_input = polars.Series(values=values, dtype=polars.Float64, strict=False)
nd_input = np.array(values)

pl_array, pl_mask = extract_1d_array(pl_input, dropna=dropna)
Expand Down

0 comments on commit 66b8d6a

Please sign in to comment.