From: Greg Hudson Date: Thu, 10 Sep 2015 17:22:24 +0000 (-0400) Subject: Fix missing success() in t_preauth.py X-Git-Tag: krb5-1.14-alpha1~16 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3b7e7bcb108add23c3c4a159287c88adcfbd6fd2;p=thirdparty%2Fkrb5.git 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 --- 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')