diff options
author | Devaev Maxim <[email protected]> | 2019-04-28 21:01:03 +0300 |
---|---|---|
committer | Devaev Maxim <[email protected]> | 2019-04-28 21:01:03 +0300 |
commit | e13b5027d6093cbacccf49e9af9c46c0dc1ef374 (patch) | |
tree | 2369edf0a1811af471d7da2e74701825eac7968a /testenv/tests/auth/test_manager.py | |
parent | 26338c5acfaf7c05cc3c8605d97e5b1e58a9280c (diff) |
load only required plugins
Diffstat (limited to 'testenv/tests/auth/test_manager.py')
-rw-r--r-- | testenv/tests/auth/test_manager.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testenv/tests/auth/test_manager.py b/testenv/tests/auth/test_manager.py index 45978828..be6b6455 100644 --- a/testenv/tests/auth/test_manager.py +++ b/testenv/tests/auth/test_manager.py @@ -42,7 +42,7 @@ from kvmd.plugins.auth import get_auth_service_class # ===== def _make_service_kwargs(path: str) -> Dict: cls = get_auth_service_class("htpasswd") - scheme = cls.get_options() + scheme = cls.get_plugin_options() return make_config({"file": path}, scheme)._unpack() # pylint: disable=protected-access |