summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_b2.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/test/test_b2.py')
-rw-r--r--Lib/test/test_b2.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_b2.py b/Lib/test/test_b2.py
index 1a21689..ca26a77 100644
--- a/Lib/test/test_b2.py
+++ b/Lib/test/test_b2.py
@@ -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)