Submitter | phabricator |
---|---|
Date | June 18, 2018, 12:33 p.m. |
Message ID | <c381b9ca68e677d962c6990d824e3e52@localhost.localdomain> |
Download | mbox | patch |
Permalink | /patch/32256/ |
State | Not Applicable |
Headers | show |
Comments
Patch
diff --git a/tests/test-pager-legacy.t b/tests/test-pager-legacy.t --- a/tests/test-pager-legacy.t +++ b/tests/test-pager-legacy.t @@ -247,9 +247,9 @@ > from mercurial import registrar, commands > cmdtable = {} > command = registrar.command(cmdtable) - > @command(b'fortytwo', [], 'fortytwo', norepo=True) + > @command(b'fortytwo', [], b'fortytwo', norepo=True) > def fortytwo(ui, *opts): - > ui.write('42\n') + > ui.write(b'42\n') > return 42 > EOF