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 May 28, 2024
1 parent ceb64c1 commit a2e0bcd
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 @@ -30,6 +30,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 a2e0bcd

Please sign in to comment.