This commit is contained in:
Mathias Gesbert 2025-12-09 14:46:09 +01:00
parent fa15fc977b
commit 3aa54e9f05
9 changed files with 20 additions and 16 deletions

View file

@ -351,7 +351,7 @@ class TestInitialization:
mcpCapabilities=McpCapabilities(http=False, sse=False),
)
assert response.result.agentInfo == Implementation(
name="@mistralai/mistral-vibe", title="Mistral Vibe", version="0.1.0"
name="@mistralai/mistral-vibe", title="Mistral Vibe", version="1.0.1"
)
vibe_setup_method = next(
(

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 24 KiB

After

Width:  |  Height:  |  Size: 24 KiB

Before After
Before After

View file

@ -12,7 +12,7 @@ class SnapshotTestAppWithUpdate(BaseSnapshotTestApp):
config = default_config()
config.enable_update_checks = True
version_update_notifier = FakeVersionUpdateGateway(
update=VersionUpdate(latest_version="0.2.0")
update=VersionUpdate(latest_version="1000.2.0")
)
super().__init__(config=config, version_update_notifier=version_update_notifier)