Remove unused group parameter from tests
The group parameter to configure_middleware() was never used so remove it. Change-Id: I0b8e27db4969452757aca796d385a51386020086
This commit is contained in:
parent
5352ff068d
commit
b4b6239872
@ -27,17 +27,16 @@ class BaseUserPluginTests(object):
|
|||||||
|
|
||||||
def configure_middleware(self,
|
def configure_middleware(self,
|
||||||
auth_plugin,
|
auth_plugin,
|
||||||
group='keystone_authtoken',
|
|
||||||
**kwargs):
|
**kwargs):
|
||||||
opts = auth.get_plugin_class(auth_plugin).get_options()
|
opts = auth.get_plugin_class(auth_plugin).get_options()
|
||||||
self.cfg.register_opts(opts, group=group)
|
self.cfg.register_opts(opts, group=_base.AUTHTOKEN_GROUP)
|
||||||
|
|
||||||
# Since these tests cfg.config() themselves rather than waiting for
|
# Since these tests cfg.config() themselves rather than waiting for
|
||||||
# auth_token to do it on __init__ we need to register the base auth
|
# auth_token to do it on __init__ we need to register the base auth
|
||||||
# options (e.g., auth_plugin)
|
# options (e.g., auth_plugin)
|
||||||
auth.register_conf_options(self.cfg.conf, group=_base.AUTHTOKEN_GROUP)
|
auth.register_conf_options(self.cfg.conf, group=_base.AUTHTOKEN_GROUP)
|
||||||
|
|
||||||
self.cfg.config(group=group,
|
self.cfg.config(group=_base.AUTHTOKEN_GROUP,
|
||||||
auth_plugin=auth_plugin,
|
auth_plugin=auth_plugin,
|
||||||
**kwargs)
|
**kwargs)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user