mirror of
https://github.com/BerriAI/litellm.git
synced 2026-09-27 01:22:18 +00:00
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:
parent
f6de0853a2
commit
23222cae61
1 changed files with 1 additions and 1 deletions
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue