Changeset 1905
- Timestamp:
- 03/07/08 10:17:28
- Files:
-
- trunk/cherrypy/test/test_http.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/cherrypy/test/test_http.py
r1898 r1905 14 14 files: a sequence of (name, filename, value) tuples for multipart uploads. 15 15 """ 16 BOUNDARY = ' ----------ThIs_Is_tHe_bouNdaRY_$'16 BOUNDARY = '________ThIs_Is_tHe_bouNdaRY_$' 17 17 L = [] 18 18 for key, filename, value in files: … … 45 45 46 46 cherrypy.tree.mount(Root()) 47 cherrypy.config.update({'environment': 'test_suite'}) 47 cherrypy.config.update({'environment': 'test_suite', 48 'server.max_request_body_size': 30000000}) 48 49 49 50

