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