diff --git a/tests/test-hgweb-no-request-uri.t b/tests/test-hgweb-no-request-uri.t --- a/tests/test-hgweb-no-request-uri.t +++ b/tests/test-hgweb-no-request-uri.t @@ -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