Skip to content

Commit

Permalink
chore: fix the error type the duckdb raises
Browse files Browse the repository at this point in the history
  • Loading branch information
NickCrews committed Mar 19, 2024
1 parent f195624 commit ddd398e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ibis/backends/duckdb/tests/test_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ def test_invalid_connect(tmp_path):


@pytest.mark.xfail(
raises=duckdb.BinderException,
raises=(duckdb.InvalidInputException, duckdb.BinderException),
reason="https://github.com/ibis-project/ibis/issues/8632",
)
def test_map_null_workaround_xfail():
Expand Down

0 comments on commit ddd398e

Please sign in to comment.