[Zope3-checkins] SVN: Zope3/trunk/src/zope/testbrowser/tests.py make the reNormalizing for multipart boundries more lienient (caused tests to

Bjorn Tillenius bjorn.tillenius at gmail.com
Mon May 15 09:21:08 EDT 2006


On Mon, May 15, 2006 at 09:03:56AM -0400, Benji York wrote:
> Log message for revision 68131:
>   make the reNormalizing for multipart boundries more lienient (caused tests to
>   fail on some machines)
>   
> 
> Changed:
>   U   Zope3/trunk/src/zope/testbrowser/tests.py
> 
> -=-
> Modified: Zope3/trunk/src/zope/testbrowser/tests.py
> ===================================================================
> --- Zope3/trunk/src/zope/testbrowser/tests.py	2006-05-15 07:32:15 UTC (rev 68130)
> +++ Zope3/trunk/src/zope/testbrowser/tests.py	2006-05-15 13:03:54 UTC (rev 68131)
> @@ -220,7 +220,7 @@
>      """
>  
>  checker = renormalizing.RENormalizing([
> -    (re.compile('127.0.0.\S+'), '-'*30),
> +    (re.compile(r'(--|boundary=)\d+\.\d+\.\d+\.\S+'), '-'*30),

FWIW, on my machine the boundary is 'localhost...', so this test still
fails for me.

Regards,

Bjorn


More information about the Zope3-Checkins mailing list