summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNeal Norwitz <nnorwitz@gmail.com>2007-05-19 04:35:52 (GMT)
committerNeal Norwitz <nnorwitz@gmail.com>2007-05-19 04:35:52 (GMT)
commitd410b320ec46ced2be067fe4297d81405280dcf4 (patch)
treeeb5fbe26ee5a8fe4fb820e2ea9c78440e2091d54
parent4868ef8832db90b7c1454320120ab2b770fcee56 (diff)
downloadcpython-d410b320ec46ced2be067fe4297d81405280dcf4.zip
cpython-d410b320ec46ced2be067fe4297d81405280dcf4.tar.gz
cpython-d410b320ec46ced2be067fe4297d81405280dcf4.tar.bz2
Give some clue as to what happened if the test fails.
-rw-r--r--Lib/bsddb/test/test_recno.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/bsddb/test/test_recno.py b/Lib/bsddb/test/test_recno.py
index 484e7d7..4b36a40 100644
--- a/Lib/bsddb/test/test_recno.py
+++ b/Lib/bsddb/test/test_recno.py
@@ -118,7 +118,7 @@ class SimpleRecnoTestCase(unittest.TestCase):
assert not d.has_key(13)
data = d.get_both(26, "z" * 60)
- assert data == "z" * 60
+ assert data == "z" * 60, 'was %r' % data
if verbose:
print data