Skip to content

Commit c24c4db

Browse files
authored
chore: Fix linting google_ai (#2256)
* Fix linting * escape the period
1 parent 134618e commit c24c4db

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

integrations/google_ai/tests/generators/test_gemini.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ def test_init(monkeypatch):
3535

3636

3737
def test_init_fails_with_tools():
38-
with pytest.raises(TypeError, match="GoogleAIGeminiGenerator does not support the `tools` parameter."):
38+
with pytest.raises(TypeError, match=r"GoogleAIGeminiGenerator does not support the `tools` parameter\."):
3939
GoogleAIGeminiGenerator(tools=["tool1", "tool2"])
4040

4141

0 commit comments

Comments
 (0)