From 23222cae6130f0a8ac504a139905a2ea931e3946 Mon Sep 17 00:00:00 2001 From: yassin Date: Sat, 19 Sep 2026 20:20:41 +0000 Subject: [PATCH] test(zerobus): escape regex in pytest.raises match Co-Authored-By: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> --- tests/test_litellm/integrations/zerobus/test_logger.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_litellm/integrations/zerobus/test_logger.py b/tests/test_litellm/integrations/zerobus/test_logger.py index 270bccf52cb..0e4888cd614 100644 --- a/tests/test_litellm/integrations/zerobus/test_logger.py +++ b/tests/test_litellm/integrations/zerobus/test_logger.py @@ -251,7 +251,7 @@ def test_a_missing_setting_names_the_env_var_to_set(monkeypatch): def test_a_table_that_is_not_fully_qualified_is_refused(): - with pytest.raises(ValueError, match="catalog.schema.table"): + with pytest.raises(ValueError, match=r"catalog\.schema\.table"): connection_for( ZerobusInitParams( workspace_url=WORKSPACE_URL,