--- a/tests/test-hgweb-no-path-info.t Sun Oct 17 04:14:06 2010 +0200
+++ b/tests/test-hgweb-no-path-info.t Sat Oct 16 18:09:01 2010 +0200
@@ -24,26 +24,26 @@
> input = StringIO()
>
> def startrsp(status, headers):
- > print '---- STATUS'
- > print status
- > print '---- HEADERS'
- > print [i for i in headers if i[0] != 'ETag']
- > print '---- DATA'
- > return output.write
+ > print '---- STATUS'
+ > print status
+ > print '---- HEADERS'
+ > print [i for i in headers if i[0] != 'ETag']
+ > print '---- DATA'
+ > return output.write
>
> env = {
- > 'wsgi.version': (1, 0),
- > 'wsgi.url_scheme': 'http',
- > 'wsgi.errors': errors,
- > 'wsgi.input': input,
- > 'wsgi.multithread': False,
- > 'wsgi.multiprocess': False,
- > 'wsgi.run_once': False,
- > 'REQUEST_METHOD': 'GET',
- > 'SCRIPT_NAME': '',
- > 'SERVER_NAME': '127.0.0.1',
- > 'SERVER_PORT': os.environ['HGPORT'],
- > 'SERVER_PROTOCOL': 'HTTP/1.0'
+ > 'wsgi.version': (1, 0),
+ > 'wsgi.url_scheme': 'http',
+ > 'wsgi.errors': errors,
+ > 'wsgi.input': input,
+ > 'wsgi.multithread': False,
+ > 'wsgi.multiprocess': False,
+ > 'wsgi.run_once': False,
+ > 'REQUEST_METHOD': 'GET',
+ > 'SCRIPT_NAME': '',
+ > 'SERVER_NAME': '127.0.0.1',
+ > 'SERVER_PORT': os.environ['HGPORT'],
+ > 'SERVER_PROTOCOL': 'HTTP/1.0'
> }
>
> def process(app):