From 3d31c13b750b8cb06f0104b522298cc254fefbe9 Mon Sep 17 00:00:00 2001 From: Nick Crews Date: Tue, 19 Mar 2024 09:16:25 -0800 Subject: [PATCH] chore: fix the error type the duckdb raises --- ibis/backends/duckdb/tests/test_client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ibis/backends/duckdb/tests/test_client.py b/ibis/backends/duckdb/tests/test_client.py index c89dac9a1e871..9dcffa6ece704 100644 --- a/ibis/backends/duckdb/tests/test_client.py +++ b/ibis/backends/duckdb/tests/test_client.py @@ -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():