diff options
author | Devaev Maxim <[email protected]> | 2021-04-17 17:44:48 +0300 |
---|---|---|
committer | Devaev Maxim <[email protected]> | 2021-04-17 17:44:48 +0300 |
commit | 19c4c7d1e3f11e1682c72336df06426d9b7608a5 (patch) | |
tree | 14fad7f5b75714152e8ce7f07ae0654c0a83ebb5 /testenv | |
parent | 5dea266895f2dac364e81e83e5ef635d1b8c1466 (diff) |
clean yaml error message
Diffstat (limited to 'testenv')
-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 4ba3cea1..4b1ee66b 100644 --- a/testenv/tests/apps/htpasswd/test_main.py +++ b/testenv/tests/apps/htpasswd/test_main.py @@ -158,7 +158,7 @@ def test_fail__not_htpasswd() -> None: def test_fail__unknown_plugin() -> None: - with pytest.raises(SystemExit, match="Config error: Unknown plugin 'auth/foobar'"): + with pytest.raises(SystemExit, match="ConfigError: Unknown plugin 'auth/foobar'"): _run_htpasswd(["list"], "", internal_type="foobar") |