From cd4a81e7bb1d6785a80bfa4262765d16ff12ed88 Mon Sep 17 00:00:00 2001 From: ncclementi Date: Fri, 23 Aug 2024 17:30:55 -0400 Subject: [PATCH] chore: adapt ddb test_geospatial --- ibis/backends/duckdb/tests/test_geospatial.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/ibis/backends/duckdb/tests/test_geospatial.py b/ibis/backends/duckdb/tests/test_geospatial.py index 2c748c1d9f48f..d62004751c618 100644 --- a/ibis/backends/duckdb/tests/test_geospatial.py +++ b/ibis/backends/duckdb/tests/test_geospatial.py @@ -263,12 +263,9 @@ def test_geospatial_flip_coordinates(geotable): def test_create_table_geospatial_types(geotable, con): name = ibis.util.gen_name("geotable") - - # con = ibis.get_backend(geotable) - t = con.create_table(name, geotable, temp=True) - assert t.op().name in con.list_tables() + assert t.op().name in con.tables assert any(map(methodcaller("is_geospatial"), t.schema().values()))