Commit d410b320 authored by Neal Norwitz's avatar Neal Norwitz

Give some clue as to what happened if the test fails.

parent 4868ef88
...@@ -118,7 +118,7 @@ class SimpleRecnoTestCase(unittest.TestCase): ...@@ -118,7 +118,7 @@ class SimpleRecnoTestCase(unittest.TestCase):
assert not d.has_key(13) assert not d.has_key(13)
data = d.get_both(26, "z" * 60) data = d.get_both(26, "z" * 60)
assert data == "z" * 60 assert data == "z" * 60, 'was %r' % data
if verbose: if verbose:
print data print data
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment