[Zope3-checkins]
SVN: zope.testing/trunk/src/zope/testing/testrunner.py
Fix bogus unitdoctest.py in renormalizer output
Marius Gedminas
marius at pov.lt
Fri Jan 12 10:40:15 EST 2007
Log message for revision 71971:
Fix bogus unitdoctest.py in renormalizer output
Merged from the mgedmin-fixes branch with
svn merge -r 71949:71950 svn+ssh://svn.zope.org/repos/main/zope.testing/branches/mgedmin-fixes .
Changed:
U zope.testing/trunk/src/zope/testing/testrunner.py
-=-
Modified: zope.testing/trunk/src/zope/testing/testrunner.py
===================================================================
--- zope.testing/trunk/src/zope/testing/testrunner.py 2007-01-12 15:36:40 UTC (rev 71970)
+++ zope.testing/trunk/src/zope/testing/testrunner.py 2007-01-12 15:40:14 UTC (rev 71971)
@@ -1889,7 +1889,7 @@
(re.compile('( |")[^\n]+testrunner-ex'), r'\1testrunner-ex'),
(re.compile('( |")[^\n]+testrunner.py'), r'\1testrunner.py'),
(re.compile(r'> [^\n]*(doc|unit)test[.]py\(\d+\)'),
- r'\1doctest.py(NNN)'),
+ r'\1test.py(NNN)'),
(re.compile(r'[.]py\(\d+\)'), r'.py(NNN)'),
(re.compile(r'[.]py:\d+'), r'.py:NNN'),
(re.compile(r' line \d+,', re.IGNORECASE), r' Line NNN,'),
More information about the Zope3-Checkins
mailing list