--- a/tests/test-help.t Sun May 28 15:51:26 2017 -0400
+++ b/tests/test-help.t Sun May 28 15:42:05 2017 -0400
@@ -685,21 +685,21 @@
> cmdtable = {}
> command = registrar.command(cmdtable)
>
- > @command('nohelp',
- > [('', 'longdesc', 3, 'x'*90),
- > ('n', '', None, 'normal desc'),
- > ('', 'newline', '', 'line1\nline2')],
- > 'hg nohelp',
+ > @command(b'nohelp',
+ > [(b'', b'longdesc', 3, b'x'*90),
+ > (b'n', b'', None, b'normal desc'),
+ > (b'', b'newline', b'', b'line1\nline2')],
+ > b'hg nohelp',
> norepo=True)
- > @command('debugoptADV', [('', 'aopt', None, 'option is (ADVANCED)')])
- > @command('debugoptDEP', [('', 'dopt', None, 'option is (DEPRECATED)')])
- > @command('debugoptEXP', [('', 'eopt', None, 'option is (EXPERIMENTAL)')])
+ > @command(b'debugoptADV', [(b'', b'aopt', None, b'option is (ADVANCED)')])
+ > @command(b'debugoptDEP', [(b'', b'dopt', None, b'option is (DEPRECATED)')])
+ > @command(b'debugoptEXP', [(b'', b'eopt', None, b'option is (EXPERIMENTAL)')])
> def nohelp(ui, *args, **kwargs):
> pass
>
> def uisetup(ui):
- > ui.setconfig('alias', 'shellalias', '!echo hi', 'helpext')
- > ui.setconfig('alias', 'hgalias', 'summary', 'helpext')
+ > ui.setconfig(b'alias', b'shellalias', b'!echo hi', b'helpext')
+ > ui.setconfig(b'alias', b'hgalias', b'summary', b'helpext')
>
> EOF
$ echo '[extensions]' >> $HGRCPATH