3
0
Fork 0

fix: do not use appname for config extension entry points

This commit is contained in:
Lance Edgar 2025-09-20 12:38:13 -05:00
parent 1daa6ee92e
commit 80b50f05da
4 changed files with 9 additions and 3 deletions

View file

@ -931,7 +931,7 @@ class TestMakeConfig(FileTestCase):
WuttaConfig.assert_called_once_with(
[], appname="wuttatest", usedb=None, preferdb=None
)
load_entry_points.assert_called_once_with("wuttatest.config.extensions")
load_entry_points.assert_called_once_with("wutta.config.extensions")
# confirm extensions are invoked
load_entry_points.reset_mock()
@ -945,7 +945,7 @@ class TestMakeConfig(FileTestCase):
WuttaConfig.assert_called_once_with(
[], appname="wuttatest", usedb=None, preferdb=None
)
load_entry_points.assert_called_once_with("wuttatest.config.extensions")
load_entry_points.assert_called_once_with("wutta.config.extensions")
foo_cls.assert_called_once_with()
foo_obj.configure.assert_called_once_with(testconfig)
foo_obj.startup.assert_called_once_with(testconfig)