[Zope-Checkins] CVS: Zope3/lib/python/Zope/Publisher - minitest.py:1.1.2.6

Shane Hathaway shane@digicool.com
Wed, 28 Nov 2001 11:57:40 -0500


Update of /cvs-repository/Zope3/lib/python/Zope/Publisher
In directory cvs.zope.org:/tmp/cvs-serv5079/lib/python/Zope/Publisher

Modified Files:
      Tag: Zope-3x-branch
	minitest.py 
Log Message:
Rearranged arguments to HTTPRequest and added a simple Publisher.HTTP test.


=== Zope3/lib/python/Zope/Publisher/minitest.py 1.1.2.5 => 1.1.2.6 ===
     'PATH_INFO': sys.argv[1]
     }
-request = HTTPRequest(req_p, sys.stdin, environ, response)
+request = HTTPRequest(req_p, response, sys.stdin, environ)
 
 publish(request)
 
@@ -57,7 +57,7 @@
         'SERVER_NAME': 'test',
         'PATH_INFO': sys.argv[1]
         }
-    request = HTTPRequest(req_p, sys.stdin, environ, response)
+    request = HTTPRequest(req_p, response, sys.stdin, environ)
     publish(request)
 end = clock()
 print '%d requests/sec' % (count / (end - start))