]> git.ipfire.org Git - thirdparty/krb5.git/commitdiff
Fix typo in t_renew.py 1077/head
authorRobbie Harwood <rharwood@redhat.com>
Mon, 1 Jun 2020 19:31:17 +0000 (15:31 -0400)
committerGreg Hudson <ghudson@mit.edu>
Tue, 2 Jun 2020 04:54:14 +0000 (00:54 -0400)
src/tests/t_renew.py

index f1bdccff62a7630a15f579a8a09d11e69b9b4355..1630345c89ef26581330463d427df35fb6001e05 100755 (executable)
@@ -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)