diff --git a/ibis/backends/tests/test_array.py b/ibis/backends/tests/test_array.py index 2ddbbebe5c83e..9de95e26a74b1 100644 --- a/ibis/backends/tests/test_array.py +++ b/ibis/backends/tests/test_array.py @@ -942,14 +942,7 @@ def test_range_single_argument(con, n): reason="range and unnest aren't implemented upstream", raises=com.OperationNotDefinedError, ) -@pytest.mark.parametrize( - "n", - [ - param(-2, marks=pytest.mark.notimpl(["snowflake"], raises=AssertionError)), - param(0, marks=pytest.mark.notimpl(["snowflake"], raises=AssertionError)), - 2, - ], -) +@pytest.mark.parametrize("n", [-2, 0, 2]) @pytest.mark.notimpl( ["polars", "flink", "pandas", "dask"], raises=com.OperationNotDefinedError )