[Zope3-checkins]
SVN: zope.testing/trunk/src/zope/testing/testrunner.py
When I replaced "ms" with "s" in rev 71989,
I did not notice that the
Marius Gedminas
marius at pov.lt
Sun Jan 14 14:25:31 EST 2007
Log message for revision 72030:
When I replaced "ms" with "s" in rev 71989, I did not notice that the
normalization patterns also expected ms.
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-14 19:10:22 UTC (rev 72029)
+++ zope.testing/trunk/src/zope/testing/testrunner.py 2007-01-14 19:25:29 UTC (rev 72030)
@@ -1900,7 +1900,7 @@
(re.compile('/r'), '\\\\r'), # undo damage from previous
(re.compile(r'\r'), '\\\\r\n'),
(re.compile(r'\d+[.]\d\d\d seconds'), 'N.NNN seconds'),
- (re.compile(r'\d+[.]\d\d\d ms'), 'N.NNN ms'),
+ (re.compile(r'\d+[.]\d\d\d s'), 'N.NNN s'),
(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+\)'),
More information about the Zope3-Checkins
mailing list