]> git.ipfire.org Git - thirdparty/krb5.git/commitdiff
Fix missing success() in t_preauth.py
authorGreg Hudson <ghudson@mit.edu>
Thu, 10 Sep 2015 17:22:24 +0000 (13:22 -0400)
committerGreg Hudson <ghudson@mit.edu>
Thu, 10 Sep 2015 17:22:24 +0000 (13:22 -0400)
Add a success() call at the end to avoid displaying the debugging help
message on completion.

ticket: 8233

src/tests/t_preauth.py

index c42e0c435b54a85142129251ebcc1c25852e7d2d..0ef8bbca4c4f553598e6444160873fe4a76d4ebe 100644 (file)
@@ -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')