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/20 17:23:22 UTC

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

Author: nlehuen
Date: Thu Jan 20 08:23:20 2005
New Revision: 125787

URL: http://svn.apache.org/viewcvs?view=rev&rev=125787
Log:
test_PythonOption_remove2 : the assertation was wrong, fixed.
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=125787&p1=httpd/mod_python/trunk/test/test.py&r1=125786&p2=httpd/mod_python/trunk/test/test.py&r2=125787
==============================================================================
--- httpd/mod_python/trunk/test/test.py	(original)
+++ httpd/mod_python/trunk/test/test.py	Thu Jan 20 08:23:20 2005
@@ -712,7 +712,7 @@
 
         rsp = self.vhost_get("test_PythonOption_remove2")
 
-        if (rsp != "[('PythonOptionTest2', 'new_value2'), ('PythonOptionTest2', 'new_value2')]"):
+        if (rsp != "[('PythonOptionTest2', 'new_value2'), ('PythonOptionTest3', 'new_value3')]"):
             self.fail(`rsp`)
 
     def test_util_fieldstorage_conf(self):