[Zope3-checkins] SVN: zope.testing/branches/regebro-python3-reloaded/src/zope/testing/testrunner/testrunner-ex/sample2/sampletests_1.py In stdlibs doctest, if you give report option as a paremeter it overrides all other report options. So, don't do that.
Lennart Regebro
regebro at gmail.com
Tue Dec 8 05:57:00 EST 2009
Log message for revision 106273:
In stdlibs doctest, if you give report option as a paremeter it overrides all other report options. So, don't do that.
Changed:
U zope.testing/branches/regebro-python3-reloaded/src/zope/testing/testrunner/testrunner-ex/sample2/sampletests_1.py
-=-
Modified: zope.testing/branches/regebro-python3-reloaded/src/zope/testing/testrunner/testrunner-ex/sample2/sampletests_1.py
===================================================================
--- zope.testing/branches/regebro-python3-reloaded/src/zope/testing/testrunner/testrunner-ex/sample2/sampletests_1.py 2009-12-08 08:57:17 UTC (rev 106272)
+++ zope.testing/branches/regebro-python3-reloaded/src/zope/testing/testrunner/testrunner-ex/sample2/sampletests_1.py 2009-12-08 10:57:00 UTC (rev 106273)
@@ -26,4 +26,4 @@
"""
def test_suite():
- return doctest.DocTestSuite(optionflags=doctest.REPORT_NDIFF)
+ return doctest.DocTestSuite()
More information about the Zope3-Checkins
mailing list