Skip to content
Snippets Groups Projects
Commit ea2d163d authored by Jan Hák's avatar Jan Hák
Browse files

tests-extra: fix- case sensitivity change on keymgr error broke the test

parent 00a6e78d
Branches
Tags
1 merge request!1466Fix case sensitivity change in keymgr error message broke the test
Pipeline #100666 passed with stages
in 5 minutes and 16 seconds
......@@ -194,7 +194,7 @@ writef(SKR, out)
cripple_skr(SKR, SKR_BROKEN)
_, _, err = Keymgr.run_check(knot.confile, ZONE, "validate-skr", SKR_BROKEN)
if err.split()[0] != "Error:":
if err.split()[0].casefold() != "error:":
set_err("keymgr validate-skr")
detail_log(err)
Keymgr.run_fail(knot.confile, ZONE, "import-skr", SKR_BROKEN)
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment