py3: add b'' prefixes in tests/test-progress.t
authorPulkit Goyal <7895pulkit@gmail.com>
Sat, 19 May 2018 18:32:57 +0530
changeset 38076 34592dd3bfa2
parent 38075 fd8eedcc3fd2
child 38077 74c5ddd97008
py3: add b'' prefixes in tests/test-progress.t # skip-blame because just b'' prefixes Differential Revision: https://phab.mercurial-scm.org/D3600
tests/test-progress.t
--- 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)