Skip to content

Commit

Permalink
avoid unsupported float16 dtype in test
Browse files Browse the repository at this point in the history
  • Loading branch information
rjzamora committed Jul 19, 2024
1 parent 9c8f216 commit cdf5a71
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/unit/dag/ops/test_udf.py
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ def test_udf_dtype_multi_op_propagation(cpu):
{
"a": np.arange(size),
"b": np.random.choice(["apple", "banana", "orange"], size),
"c": np.random.choice([0, 1], size).astype(np.float16),
"c": np.random.choice([0, 1], size),
}
)
ddf0 = dd.from_pandas(df0, npartitions=4)
Expand Down

0 comments on commit cdf5a71

Please sign in to comment.