# HG changeset patch # User Pulkit Goyal # Date 2018-09-17 12:27:39 # Node ID 322aaf80acf38c9d77fa5b38f1a0ecb650f20959 # Parent b6fa1f628bbe706b9ec031511d899adc67c53a24 py3: add missing b'' prefixes in couple of test files These were missed in the earlier patch and caught by Yuya. # skip-blame because just b'' prefix Differential Revision: https://phab.mercurial-scm.org/D4613 diff --git a/tests/test-hgweb-no-path-info.t b/tests/test-hgweb-no-path-info.t --- a/tests/test-hgweb-no-path-info.t +++ b/tests/test-hgweb-no-path-info.t @@ -68,7 +68,7 @@ should be used from d74fc8dec2b4 onward > > output = stringio() > env['QUERY_STRING'] = 'style=raw' - > process(hgwebdir({'repo': b'.'})) + > process(hgwebdir({b'repo': b'.'})) > EOF $ $PYTHON request.py ---- STATUS 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 @@ -74,12 +74,12 @@ should be used from d74fc8dec2b4 onward > output = stringio() > env['PATH_INFO'] = '/' > env['QUERY_STRING'] = 'style=raw' - > process(hgwebdir({'repo': b'.'})) + > process(hgwebdir({b'repo': b'.'})) > > output = stringio() > env['PATH_INFO'] = '/repo/file/tip/' > env['QUERY_STRING'] = 'style=raw' - > process(hgwebdir({'repo': b'.'})) + > process(hgwebdir({b'repo': b'.'})) > EOF $ $PYTHON request.py ---- STATUS