Align the number of %s with the number of format arguments.

This closes patch "[ #490330 ] String format bug in test_b2."
This commit is contained in:
Finn Bock 2001-12-07 18:21:56 +00:00
parent 44b3f76adf
commit 71be984b80
1 changed files with 2 additions and 2 deletions

View File

@ -99,8 +99,8 @@ for x in 2, 2L, 2.0:
except TypeError:
pass
else:
raise TestFailed("3-arg float pow() should have "
"raised TypeError %r" % (x, y, z))
raise TestFailed("3-arg float pow(%s, %s, %s) should "
"have raised TypeError" % (x, y, z))
else:
if fcmp(pow(x, y, z), 24.0):
raise TestFailed, 'pow(%s, %s, %s)' % (x, y, z)