##// END OF EJS Templates
py3: add missing b'' prefixes in couple of test files...
Pulkit Goyal -
r39700:322aaf80 default
parent child Browse files
Show More
@@ -68,7 +68,7 b' should be used from d74fc8dec2b4 onward '
68 >
68 >
69 > output = stringio()
69 > output = stringio()
70 > env['QUERY_STRING'] = 'style=raw'
70 > env['QUERY_STRING'] = 'style=raw'
71 > process(hgwebdir({'repo': b'.'}))
71 > process(hgwebdir({b'repo': b'.'}))
72 > EOF
72 > EOF
73 $ $PYTHON request.py
73 $ $PYTHON request.py
74 ---- STATUS
74 ---- STATUS
@@ -74,12 +74,12 b' should be used from d74fc8dec2b4 onward '
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': b'.'}))
77 > process(hgwebdir({b'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': b'.'}))
82 > process(hgwebdir({b'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