Skip to content

Commit

Permalink
avoid unsupported float16 dtype in test (#376)
Browse files Browse the repository at this point in the history
Co-authored-by: Julio Perez <[email protected]>
  • Loading branch information
rjzamora and jperez999 authored Jul 25, 2024
1 parent 179a7ca commit 1f47749
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 1f47749

Please sign in to comment.