Skip to content

Commit

Permalink
fix typing test
Browse files Browse the repository at this point in the history
  • Loading branch information
colin-ho committed Jun 13, 2024
1 parent d77038e commit eb9d55c
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions tests/expressions/typing/test_float.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,5 @@ def test_fill_nan(binary_data_fixture):
expr=col(lhs.name()).float.fill_nan(rhs),
run_kernel=lambda: lhs.float.fill_nan(rhs),
resolvable=lhs.datatype() in (DataType.float32(), DataType.float64())
and rhs.datatype() in (DataType.float32(), DataType.float64())
and lhs.datatype() == rhs.datatype(),
and rhs.datatype() in (DataType.float32(), DataType.float64()),
)

0 comments on commit eb9d55c

Please sign in to comment.