##// END OF EJS Templates
py3: add b'' prefixes in tests/test-hgweb-no-path-info.t...
Pulkit Goyal -
r39695:19f70138 default
parent child Browse files
Show More
@@ -64,11 +64,11 b' should be used from d74fc8dec2b4 onward '
64 >
64 >
65 > output = stringio()
65 > output = stringio()
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['QUERY_STRING'] = 'style=raw'
70 > env['QUERY_STRING'] = 'style=raw'
71 > process(hgwebdir({'repo': '.'}))
71 > process(hgwebdir({'repo': b'.'}))
72 > EOF
72 > EOF
73 $ $PYTHON request.py
73 $ $PYTHON request.py
74 ---- STATUS
74 ---- STATUS
General Comments 0
You need to be logged in to leave comments. Login now