diff options
author | Devaev Maxim <[email protected]> | 2019-09-11 19:11:19 +0300 |
---|---|---|
committer | Devaev Maxim <[email protected]> | 2019-09-11 19:11:19 +0300 |
commit | 2535892723e275a3e31aa318edc788869c643fd0 (patch) | |
tree | c51277d4ef558cc010622cfa8c4e4c06777a8ed1 /testenv/tests/apps/htpasswd/test_main.py | |
parent | e17889ba426a167804796a830043e59e1941972f (diff) |
changed config hierarchy
Diffstat (limited to 'testenv/tests/apps/htpasswd/test_main.py')
-rw-r--r-- | testenv/tests/apps/htpasswd/test_main.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testenv/tests/apps/htpasswd/test_main.py b/testenv/tests/apps/htpasswd/test_main.py index 52a38640..dd1d9c8d 100644 --- a/testenv/tests/apps/htpasswd/test_main.py +++ b/testenv/tests/apps/htpasswd/test_main.py @@ -57,7 +57,7 @@ def _htpasswd_fixture(request) -> Generator[passlib.apache.HtpasswdFile, None, N def _run_htpasswd(cmd: List[str], htpasswd_path: str, internal_type: str="htpasswd") -> None: cmd = ["kvmd-htpasswd", *cmd, "--set-options"] if internal_type != "htpasswd": # By default - cmd.append("kvmd/auth/internal_type=" + internal_type) + cmd.append("kvmd/auth/internal/type=" + internal_type) if htpasswd_path: cmd.append("kvmd/auth/internal/file=" + htpasswd_path) main(cmd) |