test(vertex): restore credential project validation expectation

This commit is contained in:
StatPan 2026-05-01 21:34:39 +09:00
parent 0d6d94c43c
commit f981e4abb0

View file

@ -68,7 +68,7 @@ class TestVertexBase:
project_id="different-project",
custom_llm_provider="vertex_ai",
)
assert result == ("fake-token-1", "project-1")
assert result == ("fake-token-1", "different-project")
@pytest.mark.parametrize("is_async", [True, False], ids=["async", "sync"])
@pytest.mark.asyncio