[Python-checkins] r55453 - python/trunk/Lib/bsddb/test/test_recno.py
neal.norwitz
python-checkins at python.org
Sat May 19 06:35:58 CEST 2007
Author: neal.norwitz
Date: Sat May 19 06:35:52 2007
New Revision: 55453
Modified:
python/trunk/Lib/bsddb/test/test_recno.py
Log:
Give some clue as to what happened if the test fails.
Modified: python/trunk/Lib/bsddb/test/test_recno.py
==============================================================================
--- python/trunk/Lib/bsddb/test/test_recno.py (original)
+++ python/trunk/Lib/bsddb/test/test_recno.py Sat May 19 06:35:52 2007
@@ -118,7 +118,7 @@
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
More information about the Python-checkins
mailing list