[Zope3-checkins]
SVN: zope.testing/trunk/src/zope/testing/renormalizing.py
a test used the wrong variable to show that it worked.
Bjorn Tillenius
bjoti777 at student.liu.se
Fri Mar 31 04:40:55 EST 2006
Log message for revision 66267:
a test used the wrong variable to show that it worked.
Changed:
U zope.testing/trunk/src/zope/testing/renormalizing.py
-=-
Modified: zope.testing/trunk/src/zope/testing/renormalizing.py
===================================================================
--- zope.testing/trunk/src/zope/testing/renormalizing.py 2006-03-31 05:25:20 UTC (rev 66266)
+++ zope.testing/trunk/src/zope/testing/renormalizing.py 2006-03-31 09:40:54 UTC (rev 66267)
@@ -84,7 +84,7 @@
>>> checker.check_output(want_ellided, got, 0)
False
- >>> checker.check_output(want, got, doctest.ELLIPSIS)
+ >>> checker.check_output(want_ellided, got, doctest.ELLIPSIS)
True
When we get differencs, we output them with normalized text:
More information about the Zope3-Checkins
mailing list