Skip to content

Commit

Permalink
chore: fix druid exception in test_window
Browse files Browse the repository at this point in the history
  • Loading branch information
ncclementi committed Aug 1, 2024
1 parent 71368f7 commit 00be355
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions ibis/backends/tests/test_window.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,14 @@
MySQLOperationalError,
PsycoPg2InternalError,
Py4JJavaError,
PyDruidProgrammingError,
PyODBCProgrammingError,
SnowflakeProgrammingError,
)
from ibis.legacy.udf.vectorized import analytic, reduction

pytestmark = [
pytest.mark.notimpl(
["druid"], raises=(com.OperationNotDefinedError, PyDruidProgrammingError)
["druid"], raises=(com.OperationNotDefinedError, com.TableNotFound)
)
]

Expand Down

0 comments on commit 00be355

Please sign in to comment.