Commit 141522ad authored by sweh's avatar sweh

Use a better regex as suggested by Benji York.


git-svn-id: http://svn.zope.org/repos/main/zc.buildout/trunk@102736 62d5b8a3-27da-0310-9561-8e5933582275
parent 50eb73fc
......@@ -2818,7 +2818,7 @@ def test_suite():
tearDown=zc.buildout.testing.buildoutTearDown,
optionflags=doctest.NORMALIZE_WHITESPACE | doctest.ELLIPSIS,
checker=renormalizing.RENormalizing([
(re.compile('0x[0-9a-fA-F]+'), '<MEM ADDRESS>'),
(re.compile(' at -?0x[^>]+'), '<MEM ADDRESS>'),
(re.compile('http://localhost:[0-9]{4,5}/'),
'http://localhost/'),
(re.compile('[0-9a-f]{32}'), '<MD5 CHECKSUM>'),
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment