Skip to content

Commit d4a4210

Browse files
committed
test(risingwave): remove unused fixtures
1 parent cc1224b commit d4a4210

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

ibis/backends/risingwave/tests/test_functions.py

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -618,12 +618,8 @@ def test_anonymous_aggregate(alltypes, df):
618618
tm.assert_frame_equal(result, expected)
619619

620620

621-
@pytest.fixture
622-
def array_types(con):
623-
return con.table("array_types")
624-
625-
626-
def test_array_length(array_types):
621+
def test_array_length(con):
622+
array_types = con.table("array_types")
627623
expr = array_types.select(
628624
array_types.x.length().name("x_length"),
629625
array_types.y.length().name("y_length"),

0 commit comments

Comments
 (0)