Mercurial > hg
changeset 38076:34592dd3bfa2
py3: add b'' prefixes in tests/test-progress.t
# skip-blame because just b'' prefixes
Differential Revision: https://phab.mercurial-scm.org/D3600
author | Pulkit Goyal <7895pulkit@gmail.com> |
---|---|
date | Sat, 19 May 2018 18:32:57 +0530 |
parents | fd8eedcc3fd2 |
children | 74c5ddd97008 |
files | tests/test-progress.t |
diffstat | 1 files changed, 4 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/tests/test-progress.t Sat May 19 18:32:24 2018 +0530 +++ b/tests/test-progress.t Sat May 19 18:32:57 2018 +0530 @@ -16,10 +16,10 @@ > time.time = incrementingtime() > > @command(b'loop', - > [('', 'total', '', 'override for total'), - > ('', 'nested', False, 'show nested results'), - > ('', 'parallel', False, 'show parallel sets of results')], - > 'hg loop LOOPS', + > [(b'', b'total', b'', b'override for total'), + > (b'', b'nested', False, b'show nested results'), + > (b'', b'parallel', False, b'show parallel sets of results')], + > b'hg loop LOOPS', > norepo=True) > def loop(ui, loops, **opts): > loops = int(loops)