From 3b7e7bcb108add23c3c4a159287c88adcfbd6fd2 Mon Sep 17 00:00:00 2001 From: Greg Hudson Date: Thu, 10 Sep 2015 13:22:24 -0400 Subject: [PATCH] Fix missing success() in t_preauth.py Add a success() call at the end to avoid displaying the debugging help message on completion. ticket: 8233 --- src/tests/t_preauth.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/tests/t_preauth.py b/src/tests/t_preauth.py index c42e0c435b..0ef8bbca4c 100644 --- a/src/tests/t_preauth.py +++ b/src/tests/t_preauth.py @@ -23,3 +23,5 @@ realm.run([kadminl, 'setstr', realm.user_princ, '2rt', 'secondtrip']) out = realm.run([kinit, realm.user_princ], input=password('user')+'\n') if '2rt: secondtrip' not in out: fail('multi round-trip cookie test') + +success('Pre-authentication framework tests') -- 2.47.2