From f4fcf8767c4f933387264a6858dcfdecda238710 Mon Sep 17 00:00:00 2001 From: Isaac Boukris Date: Wed, 14 Jul 2021 15:23:11 +0300 Subject: [PATCH] tests: fix a typo in test_ap_req --- tests/plugin/check-pac.in | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/plugin/check-pac.in b/tests/plugin/check-pac.in index e201ed429..13c2d8d3a 100644 --- a/tests/plugin/check-pac.in +++ b/tests/plugin/check-pac.in @@ -116,22 +116,22 @@ ${test_apreq} --verify-pac ${server}@${R} ${keytab} ${cache} || \ { ec=1 ; eval "${testfailed}"; } ${kdestroy} -echo "Getting client initial tickets (pag)"; > messages.log +echo "Getting client initial tickets (pac)"; > messages.log ${kinit} --request-pac --password-file=${objdir}/foopassword foo@${R} || \ { ec=1 ; eval "${testfailed}"; } echo "Getting tickets" ; > messages.log ${kgetcred} ${server}@${R} || { ec=1 ; eval "${testfailed}"; } -echo "Verify PAC on server (pag)"; > messages.log +echo "Verify PAC on server (pac)"; > messages.log ${test_apreq} --verify-pac ${server}@${R} ${keytab} ${cache} || \ { ec=1 ; eval "${testfailed}"; } ${kdestroy} -echo "Getting client initial tickets (no pag)"; > messages.log +echo "Getting client initial tickets (no pac)"; > messages.log ${kinit} --no-request-pac --password-file=${objdir}/foopassword foo@${R} || \ { ec=1 ; eval "${testfailed}"; } echo "Getting tickets" ; > messages.log ${kgetcred} ${server}@${R} || { ec=1 ; eval "${testfailed}"; } -echo "Verify PAC on server (no pag)"; > messages.log +echo "Verify PAC on server (no pac)"; > messages.log ${test_apreq} --verify-pac ${server}@${R} ${keytab} ${cache} 2> /dev/null && \ { ec=1 ; eval "${testfailed}"; } ${kdestroy}