Mercurial > public > mercurial-scm > hg-stable
diff tests/test-progress.t @ 40222:af5e2b23040a
py3: add b'' prefixes in tests/test-progress.t
This makes the test pass on Python 3.
# skip-blame because just b'' prefixes
Differential Revision: https://phab.mercurial-scm.org/D5033
author | Pulkit Goyal <pulkit@yandex-team.ru> |
---|---|
date | Sat, 13 Oct 2018 04:36:04 +0300 |
parents | 26523316e4d0 |
children | 24b1a8eb73aa |
line wrap: on
line diff
--- a/tests/test-progress.t Sat Oct 13 04:29:03 2018 +0300 +++ b/tests/test-progress.t Sat Oct 13 04:36:04 2018 +0300 @@ -33,26 +33,26 @@ > nested = True > loops = abs(loops) > - > progress = ui.makeprogress(topiclabel, unit='loopnum', total=total) - > other = ui.makeprogress('other', unit='othernum', total=total) + > progress = ui.makeprogress(topiclabel, unit=b'loopnum', total=total) + > other = ui.makeprogress(b'other', unit=b'othernum', total=total) > for i in range(loops): > progress.update(i, item=getloopitem(i)) > if opts.get('parallel'): - > other.update(i, item='other.%d' % i) + > other.update(i, item=b'other.%d' % i) > if nested: > nested_steps = 2 > if i and i % 4 == 0: > nested_steps = 5 - > nested = ui.makeprogress('nested', unit='nestnum', + > nested = ui.makeprogress(b'nested', unit=b'nestnum', > total=nested_steps) > for j in range(nested_steps): - > nested.update(j, item='nested.%d' % j) + > nested.update(j, item=b'nested.%d' % j) > nested.complete() > progress.complete() > - > topiclabel = 'loop' + > topiclabel = b'loop' > def getloopitem(i): - > return 'loop.%d' % i + > return b'loop.%d' % i > > EOF