Skip to content

Commit 0661a2c

Browse files
committed
fix test
1 parent 2236de7 commit 0661a2c

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

tests/integration/test_reads.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -321,9 +321,6 @@ def test_pyarrow_limit_with_multiple_files(catalog: Catalog) -> None:
321321
@pytest.mark.integration
322322
@pytest.mark.parametrize("catalog", [pytest.lazy_fixture("session_catalog_hive"), pytest.lazy_fixture("session_catalog")])
323323
def test_daft_nan(catalog: Catalog) -> None:
324-
import daft
325-
326-
daft.context.set_runner_native()
327324
table_test_null_nan_rewritten = catalog.load_table("default.test_null_nan_rewritten")
328325
df = table_test_null_nan_rewritten.to_daft()
329326
assert df.count_rows() == 3
@@ -333,9 +330,6 @@ def test_daft_nan(catalog: Catalog) -> None:
333330
@pytest.mark.integration
334331
@pytest.mark.parametrize("catalog", [pytest.lazy_fixture("session_catalog_hive"), pytest.lazy_fixture("session_catalog")])
335332
def test_daft_nan_rewritten(catalog: Catalog) -> None:
336-
import daft
337-
338-
daft.context.set_runner_native()
339333
table_test_null_nan_rewritten = catalog.load_table("default.test_null_nan_rewritten")
340334
df = table_test_null_nan_rewritten.to_daft()
341335
df = df.where(df["col_numeric"].float.is_nan())

0 commit comments

Comments
 (0)