Skip to content

Commit

Permalink
test: fix error
Browse files Browse the repository at this point in the history
  • Loading branch information
cpcloud committed Sep 28, 2024
1 parent 10928ec commit def4d9b
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions ibis/backends/tests/test_sql.py
Original file line number Diff line number Diff line change
Expand Up @@ -171,10 +171,13 @@ def test_union_aliasing(backend_name, snapshot):
),
param(
ibis.uuid(),
marks=pytest.mark.notimpl(
["exasol", "risingwave", "druid", "oracle", "pyspark"],
raises=exc.OperationNotDefinedError,
),
marks=[
pytest.mark.notimpl(
["exasol", "risingwave", "druid", "oracle"],
raises=exc.OperationNotDefinedError,
),
pytest.mark.notimpl(["pyspark"], raises=exc.UnsupportedOperationError),
],
id="uuid",
),
],
Expand Down

0 comments on commit def4d9b

Please sign in to comment.