Mercurial > hg-stable
changeset 39675:19f701387ed5
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
author | Pulkit Goyal <pulkit@yandex-team.ru> |
---|---|
date | Sun, 16 Sep 2018 20:49:37 +0530 |
parents | c20861b65688 |
children | a12916cfef9e |
files | tests/test-hgweb-no-path-info.t |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- 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