Actually raise on failure, instead of doing nothing.

This commit is contained in:
Mark Dickinson 2010-02-07 13:09:52 +00:00
parent 7ce5c831cc
commit 1224f4afb4
1 changed files with 2 additions and 2 deletions

View File

@ -33,8 +33,8 @@ def testformat(formatstr, args, output=None, limit=None):
if output and limit is None and result != output:
if verbose:
print 'no'
print "%s %% %s == %s != %s" % \
(repr(formatstr), repr(args), repr(result), repr(output))
raise AssertionError("%r %% %r == %r != %r" %
(formatstr, args, result, output))
# when 'limit' is specified, it determines how many characters
# must match exactly; lengths must always match.
# ex: limit=5, '12345678' matches '12345___'