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:
parent
e70b187d51
commit
2e3895224a
|
|
@ -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
|
||||
)
|
||||
|
|
|
|||
Loading…
Reference in New Issue