test(zerobus): escape regex in pytest.raises match

Co-Authored-By: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>
This commit is contained in:
yassin 2026-09-19 20:20:41 +00:00
parent f6de0853a2
commit 23222cae61

View file

@ -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,