[Checkins] SVN: zope.app.authentication/trunk/src/zope/app/authentication/browser/tests.py Fixed renormalizing pattern

Dmitry Vasiliev dima at hlabs.spb.ru
Tue May 15 14:21:29 EDT 2007


Log message for revision 75772:
  Fixed renormalizing pattern

Changed:
  U   zope.app.authentication/trunk/src/zope/app/authentication/browser/tests.py

-=-
Modified: zope.app.authentication/trunk/src/zope/app/authentication/browser/tests.py
===================================================================
--- zope.app.authentication/trunk/src/zope/app/authentication/browser/tests.py	2007-05-15 17:43:53 UTC (rev 75771)
+++ zope.app.authentication/trunk/src/zope/app/authentication/browser/tests.py	2007-05-15 18:21:29 UTC (rev 75772)
@@ -121,7 +121,7 @@
 
 checker = renormalizing.RENormalizing([
     (re.compile(r"HTTP/1\.1 200 .*"), "HTTP/1.1 200 OK"),
-    (re.compile(r"HTTP/1\.1 303 .*"), "HTTP/1.1 200 See Other"),
+    (re.compile(r"HTTP/1\.1 303 .*"), "HTTP/1.1 303 See Other"),
     (re.compile(r"HTTP/1\.1 401 .*"), "HTTP/1.1 401 Unauthorized"),
     ])
 



More information about the Checkins mailing list