py3: add b'' prefixes in tests/test-hgweb-no-request-uri.t
# skip-blame because just b'' prefixes.
Differential Revision: https://phab.mercurial-scm.org/D4611
--- a/tests/test-hgweb-no-request-uri.t Sun Sep 16 20:49:37 2018 +0530
+++ b/tests/test-hgweb-no-request-uri.t Sun Sep 16 20:58:51 2018 +0530
@@ -64,22 +64,22 @@
> output = stringio()
> env['PATH_INFO'] = '/'
> env['QUERY_STRING'] = 'style=atom'
- > process(hgweb('.', name = 'repo'))
+ > process(hgweb(b'.', name = b'repo'))
>
> output = stringio()
> env['PATH_INFO'] = '/file/tip/'
> env['QUERY_STRING'] = 'style=raw'
- > process(hgweb('.', name = 'repo'))
+ > process(hgweb(b'.', name = b'repo'))
>
> output = stringio()
> env['PATH_INFO'] = '/'
> env['QUERY_STRING'] = 'style=raw'
- > process(hgwebdir({'repo': '.'}))
+ > process(hgwebdir({'repo': b'.'}))
>
> output = stringio()
> env['PATH_INFO'] = '/repo/file/tip/'
> env['QUERY_STRING'] = 'style=raw'
- > process(hgwebdir({'repo': '.'}))
+ > process(hgwebdir({'repo': b'.'}))
> EOF
$ $PYTHON request.py
---- STATUS