You are viewing a plain text version of this content. The canonical link for it is here.
Posted to mod_python-commits@quetz.apache.org by nl...@apache.org on 2005/01/29 09:48:10 UTC

svn commit: r149021 - /httpd/mod_python/trunk/test/test.py

Author: nlehuen
Date: Sat Jan 29 00:48:08 2005
New Revision: 149021

URL: http://svn.apache.org/viewcvs?view=rev&rev=149021
Log:
The Cookie.Cookie test had to be modified to follow the changes in the cookie parsing algorithm.
Modified:
   httpd/mod_python/trunk/test/test.py

Modified: httpd/mod_python/trunk/test/test.py
Url: http://svn.apache.org/viewcvs/httpd/mod_python/trunk/test/test.py?view=diff&rev=149021&p1=httpd/mod_python/trunk/test/test.py&r1=149020&p2=httpd/mod_python/trunk/test/test.py&r2=149021
==============================================================================
--- httpd/mod_python/trunk/test/test.py	(original)
+++ httpd/mod_python/trunk/test/test.py	Sat Jan 29 00:48:08 2005
@@ -1028,8 +1028,9 @@
         rsp = response.read()
         conn.close()
 
-        if rsp != "test ok" or setcookie != "eggs=bar, bar=foo, spam=foo; path=blah":
+        if rsp != "test ok" or setcookie != 'path=blah, eggs=bar, bar=foo, spam=foo':
             print `rsp`
+            print `setcookie`
             self.fail("cookie parsing failed")
 
     def test_Cookie_MarshalCookie_conf(self):