[Zope3-checkins] SVN: Zope3/trunk/src/zope/component/tests.py object addresses can contain upper case hex digits, too (caused test failures

Benji York benji at zope.com
Sat Apr 29 22:47:44 EDT 2006


Log message for revision 67752:
  object addresses can contain upper case hex digits, too (caused test failures
  on Windows)
  

Changed:
  U   Zope3/trunk/src/zope/component/tests.py

-=-
Modified: Zope3/trunk/src/zope/component/tests.py
===================================================================
--- Zope3/trunk/src/zope/component/tests.py	2006-04-29 15:55:20 UTC (rev 67751)
+++ Zope3/trunk/src/zope/component/tests.py	2006-04-30 02:47:42 UTC (rev 67752)
@@ -938,7 +938,7 @@
 
 def test_suite():
     checker = renormalizing.RENormalizing([
-        (re.compile('at 0x[0-9a-f]+'), 'at <SOME ADDRESS>'),
+        (re.compile('at 0x[0-9a-fA-F]+'), 'at <SOME ADDRESS>'),
         ])
 
     return unittest.TestSuite((



More information about the Zope3-Checkins mailing list