[Zope3-checkins]
SVN: Zope3/branches/stephan_and_jim-response-refactor/src/zope/app/dav/tests/test_prop
Updated to reflect new request-initialization api
Jim Fulton
jim at zope.com
Fri Sep 2 17:06:40 EDT 2005
Log message for revision 38259:
Updated to reflect new request-initialization api
Changed:
U Zope3/branches/stephan_and_jim-response-refactor/src/zope/app/dav/tests/test_propfind.py
U Zope3/branches/stephan_and_jim-response-refactor/src/zope/app/dav/tests/test_proppatch.py
-=-
Modified: Zope3/branches/stephan_and_jim-response-refactor/src/zope/app/dav/tests/test_propfind.py
===================================================================
--- Zope3/branches/stephan_and_jim-response-refactor/src/zope/app/dav/tests/test_propfind.py 2005-09-02 21:00:25 UTC (rev 38258)
+++ Zope3/branches/stephan_and_jim-response-refactor/src/zope/app/dav/tests/test_propfind.py 2005-09-02 21:06:39 UTC (rev 38259)
@@ -84,7 +84,7 @@
if _environ.has_key(key.upper()):
del _environ[key.upper()]
- request = TestRequest(StringIO(body), StringIO(), _environ)
+ request = TestRequest(StringIO(body), _environ)
return request
class FileSized(object):
Modified: Zope3/branches/stephan_and_jim-response-refactor/src/zope/app/dav/tests/test_proppatch.py
===================================================================
--- Zope3/branches/stephan_and_jim-response-refactor/src/zope/app/dav/tests/test_proppatch.py 2005-09-02 21:00:25 UTC (rev 38258)
+++ Zope3/branches/stephan_and_jim-response-refactor/src/zope/app/dav/tests/test_proppatch.py 2005-09-02 21:06:39 UTC (rev 38259)
@@ -90,7 +90,7 @@
if _environ.has_key(key.upper()):
del _environ[key.upper()]
- request = TestRequest(StringIO(body), StringIO(), _environ)
+ request = TestRequest(StringIO(body), _environ)
return request
More information about the Zope3-Checkins
mailing list