Mercurial > hg-stable
changeset 43820:c6b4c348360e
tests: fix command name in test-blackbox.t to be bytes
This command is only used when tests are run with --with-chg, so this was missed
before.
Differential Revision: https://phab.mercurial-scm.org/D7553
author | Kyle Lippincott <spectral@google.com> |
---|---|
date | Thu, 05 Dec 2019 14:18:39 -0800 |
parents | 3fe91bcd5199 |
children | e6cda6efb12a |
files | tests/test-blackbox.t |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/tests/test-blackbox.t Thu Dec 05 14:01:26 2019 -0800 +++ b/tests/test-blackbox.t Thu Dec 05 14:18:39 2019 -0800 @@ -390,7 +390,7 @@ > from mercurial import registrar, scmutil > cmdtable = {} > command = registrar.command(cmdtable) - > @command('noop') + > @command(b'noop') > def noop(ui, repo): > pass > EOF