From: Robbie Harwood Date: Mon, 1 Jun 2020 19:31:17 +0000 (-0400) Subject: Fix typo in t_renew.py X-Git-Tag: krb5-1.19-beta1~67 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F1077%2Fhead;p=thirdparty%2Fkrb5.git Fix typo in t_renew.py --- diff --git a/src/tests/t_renew.py b/src/tests/t_renew.py index f1bdccff62..1630345c89 100755 --- a/src/tests/t_renew.py +++ b/src/tests/t_renew.py @@ -45,7 +45,8 @@ def test(testname, life, rlife, exp_life, exp_rlife, env=None): if rtime is not None: rlife = (rtime - starttime).seconds if abs(rlife - exp_rlife) > 5: - fail('%s: expected rlife %d, got %d' (testname, exp_rlife, rlife)) + fail('%s: expected rlife %d, got %d' % + (testname, exp_rlife, rlife)) # Get renewable tickets. test('simple', '1h', '2h', 3600, 7200)