##// END OF EJS Templates
py3: add b'' prefixes in tests/test-hgweb-no-request-uri.t...
Pulkit Goyal -
r39696:a12916cf default
parent child Browse files
Show More
@@ -64,22 +64,22 b' should be used from d74fc8dec2b4 onward '
64 > output = stringio()
64 > output = stringio()
65 > env['PATH_INFO'] = '/'
65 > env['PATH_INFO'] = '/'
66 > env['QUERY_STRING'] = 'style=atom'
66 > env['QUERY_STRING'] = 'style=atom'
67 > process(hgweb('.', name = 'repo'))
67 > process(hgweb(b'.', name = b'repo'))
68 >
68 >
69 > output = stringio()
69 > output = stringio()
70 > env['PATH_INFO'] = '/file/tip/'
70 > env['PATH_INFO'] = '/file/tip/'
71 > env['QUERY_STRING'] = 'style=raw'
71 > env['QUERY_STRING'] = 'style=raw'
72 > process(hgweb('.', name = 'repo'))
72 > process(hgweb(b'.', name = b'repo'))
73 >
73 >
74 > output = stringio()
74 > output = stringio()
75 > env['PATH_INFO'] = '/'
75 > env['PATH_INFO'] = '/'
76 > env['QUERY_STRING'] = 'style=raw'
76 > env['QUERY_STRING'] = 'style=raw'
77 > process(hgwebdir({'repo': '.'}))
77 > process(hgwebdir({'repo': b'.'}))
78 >
78 >
79 > output = stringio()
79 > output = stringio()
80 > env['PATH_INFO'] = '/repo/file/tip/'
80 > env['PATH_INFO'] = '/repo/file/tip/'
81 > env['QUERY_STRING'] = 'style=raw'
81 > env['QUERY_STRING'] = 'style=raw'
82 > process(hgwebdir({'repo': '.'}))
82 > process(hgwebdir({'repo': b'.'}))
83 > EOF
83 > EOF
84 $ $PYTHON request.py
84 $ $PYTHON request.py
85 ---- STATUS
85 ---- STATUS
General Comments 0
You need to be logged in to leave comments. Login now