test: update _ProviderCollector construction for new name arg

Sibling test pinned the old zero-arg constructor; salvaged #80493 gave
_ProviderCollector a required provider name (used for skill registration
and PluginContext delegation).
This commit is contained in:
Teknium 2026-08-13 11:36:49 -07:00
parent e70b187d51
commit 2e3895224a
1 changed files with 1 additions and 1 deletions

View File

@ -136,7 +136,7 @@ class TestProviderCollectorCliNoop:
"""_ProviderCollector.register_cli_command is a no-op (doesn't crash)."""
from plugins.memory import _ProviderCollector
collector = _ProviderCollector()
collector = _ProviderCollector("test-provider")
collector.register_cli_command(
name="test", help="test", setup_fn=lambda s: None
)