tests: add b'' prefixes to ui.configbool() call
Otherwise the call fails due to using str on Python 3.
# skip-blame: just b'' prefixes
Differential Revision: https://phab.mercurial-scm.org/D5703
--- a/tests/test-http-protocol.t Fri Jan 25 15:31:07 2019 -0800
+++ b/tests/test-http-protocol.t Fri Jan 25 15:36:55 2019 -0800
@@ -389,7 +389,7 @@
> relpath = path[len(b'/redirector'):]
> res.status = b'301 Redirect'
> newurl = b'%s/redirected%s' % (req.baseurl, relpath)
- > if not repo.ui.configbool('testing', 'redirectqs', True) and b'?' in newurl:
+ > if not repo.ui.configbool(b'testing', b'redirectqs', True) and b'?' in newurl:
> newurl = newurl[0:newurl.index(b'?')]
> res.headers[b'Location'] = newurl
> res.headers[b'Content-Type'] = b'text/plain'