# HG changeset patch # User Kyle Lippincott # Date 2019-12-05 22:18:39 # Node ID c6b4c348360e1678bc0a9a605ea112416387a958 # Parent 3fe91bcd51990c8182fb454c42b0e8684efd0680 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 diff --git a/tests/test-blackbox.t b/tests/test-blackbox.t --- a/tests/test-blackbox.t +++ b/tests/test-blackbox.t @@ -390,7 +390,7 @@ when using chg, blackbox.log should get > from mercurial import registrar, scmutil > cmdtable = {} > command = registrar.command(cmdtable) - > @command('noop') + > @command(b'noop') > def noop(ui, repo): > pass > EOF