File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -43,13 +43,13 @@ def _spy_event_adapter_validate_json(mocker: pytest_mock.MockerFixture) -> None:
43
43
44
44
def test_plugin_manager_register_action (plugin_manager : PluginManager ) -> None :
45
45
"""Test that an action can be registered in the PluginManager."""
46
- assert len (plugin_manager ._handlers_registry ._plugin_actions ) == 0
46
+ assert len (plugin_manager ._handlers_registry ._plugin_event_handler_catalogs ) == 0
47
47
48
48
action = Action ("my-fake-action-uuid" )
49
49
plugin_manager .register_action (action )
50
50
51
- assert len (plugin_manager ._handlers_registry ._plugin_actions ) == 1
52
- assert plugin_manager ._handlers_registry ._plugin_actions [0 ] == action
51
+ assert len (plugin_manager ._handlers_registry ._plugin_event_handler_catalogs ) == 1
52
+ assert plugin_manager ._handlers_registry ._plugin_event_handler_catalogs [0 ] == action
53
53
54
54
55
55
def test_plugin_manager_register_event_listener (plugin_manager : PluginManager ) -> None :
You can’t perform that action at this time.
0 commit comments