Skip to content

Commit 3eab7cb

Browse files
committed
fix test
1 parent 4156450 commit 3eab7cb

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/integration/test_reads.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -332,7 +332,7 @@ def test_daft_nan(catalog: Catalog) -> None:
332332
def test_daft_nan_rewritten(catalog: Catalog) -> None:
333333
table_test_null_nan_rewritten = catalog.load_table("default.test_null_nan_rewritten")
334334
df = table_test_null_nan_rewritten.to_daft()
335-
df = df.where(df["col_numeric"].float.is_nan())
335+
df = df.where(df["col_numeric"].is_nan())
336336
df = df.select("idx", "col_numeric")
337337
assert df.count_rows() == 1
338338
assert df.to_pydict()["idx"][0] == 1

0 commit comments

Comments
 (0)