File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree 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:
4343
4444def test_plugin_manager_register_action (plugin_manager : PluginManager ) -> None :
4545 """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
4747
4848 action = Action ("my-fake-action-uuid" )
4949 plugin_manager .register_action (action )
5050
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
5353
5454
5555def test_plugin_manager_register_event_listener (plugin_manager : PluginManager ) -> None :
You can’t perform that action at this time.
0 commit comments