Skip to content

Commit

Permalink
chore(snowflake): fix range single argument unnest xpass
Browse files Browse the repository at this point in the history
  • Loading branch information
cpcloud committed Dec 6, 2023
1 parent 2b9d6d9 commit 066a416
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions ibis/backends/tests/test_array.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
)
Expand Down

0 comments on commit 066a416

Please sign in to comment.