[Zope3-checkins] SVN: zope.testing/branches/mgedmin-fixes/src/zope/testing/testrunner.py Fix bogus unitdoctest.py in renormalizer output

Marius Gedminas marius at pov.lt
Thu Jan 11 19:41:33 EST 2007


Log message for revision 71950:
  Fix bogus unitdoctest.py in renormalizer output
  
  

Changed:
  U   zope.testing/branches/mgedmin-fixes/src/zope/testing/testrunner.py

-=-
Modified: zope.testing/branches/mgedmin-fixes/src/zope/testing/testrunner.py
===================================================================
--- zope.testing/branches/mgedmin-fixes/src/zope/testing/testrunner.py	2007-01-12 00:39:20 UTC (rev 71949)
+++ zope.testing/branches/mgedmin-fixes/src/zope/testing/testrunner.py	2007-01-12 00:41:32 UTC (rev 71950)
@@ -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