##// 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 69 > output = stringio()
70 70 > env['QUERY_STRING'] = 'style=raw'
71 > process(hgwebdir({'repo': b'.'}))
71 > process(hgwebdir({b'repo': b'.'}))
72 72 > EOF
73 73 $ $PYTHON request.py
74 74 ---- STATUS
@@ -74,12 +74,12 b' should be used from d74fc8dec2b4 onward '
74 74 > output = stringio()
75 75 > env['PATH_INFO'] = '/'
76 76 > env['QUERY_STRING'] = 'style=raw'
77 > process(hgwebdir({'repo': b'.'}))
77 > process(hgwebdir({b'repo': b'.'}))
78 78 >
79 79 > output = stringio()
80 80 > env['PATH_INFO'] = '/repo/file/tip/'
81 81 > env['QUERY_STRING'] = 'style=raw'
82 > process(hgwebdir({'repo': b'.'}))
82 > process(hgwebdir({b'repo': b'.'}))
83 83 > EOF
84 84 $ $PYTHON request.py
85 85 ---- STATUS
General Comments 0
You need to be logged in to leave comments. Login now