From def4d9be648324999800143ec563378527d1a6ab Mon Sep 17 00:00:00 2001 From: Phillip Cloud <417981+cpcloud@users.noreply.github.com> Date: Sat, 28 Sep 2024 07:39:46 -0400 Subject: [PATCH] test: fix error --- ibis/backends/tests/test_sql.py | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/ibis/backends/tests/test_sql.py b/ibis/backends/tests/test_sql.py index 9f94744cc29d1..f45619874e802 100644 --- a/ibis/backends/tests/test_sql.py +++ b/ibis/backends/tests/test_sql.py @@ -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", ), ],