# HG changeset patch # User Pulkit Goyal # Date 1539394564 -10800 # Node ID af5e2b23040afbe7980acfb8d4501fb49b1a7adc # Parent 6d52c2275c302d220935243312f51d57954bcf55 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 diff -r 6d52c2275c30 -r af5e2b23040a contrib/python3-whitelist --- a/contrib/python3-whitelist Sat Oct 13 04:29:03 2018 +0300 +++ b/contrib/python3-whitelist Sat Oct 13 04:36:04 2018 +0300 @@ -406,6 +406,7 @@ test-permissions.t test-phases-exchange.t test-phases.t +test-progress.t test-pull-branch.t test-pull-http.t test-pull-permission.t diff -r 6d52c2275c30 -r af5e2b23040a tests/test-progress.t --- 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