##// 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 64 > output = stringio()
65 65 > env['PATH_INFO'] = '/'
66 66 > env['QUERY_STRING'] = 'style=atom'
67 > process(hgweb('.', name = 'repo'))
67 > process(hgweb(b'.', name = b'repo'))
68 68 >
69 69 > output = stringio()
70 70 > env['PATH_INFO'] = '/file/tip/'
71 71 > env['QUERY_STRING'] = 'style=raw'
72 > process(hgweb('.', name = 'repo'))
72 > process(hgweb(b'.', name = b'repo'))
73 73 >
74 74 > output = stringio()
75 75 > env['PATH_INFO'] = '/'
76 76 > env['QUERY_STRING'] = 'style=raw'
77 > process(hgwebdir({'repo': '.'}))
77 > process(hgwebdir({'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': '.'}))
82 > process(hgwebdir({'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