py3: add a missing b'' prefix in test extension for chg
authorMartin von Zweigbergk <martinvonz@google.com>
Wed, 28 Aug 2019 17:45:18 -0700
changeset 43154 f05d10ef42e3
parent 43153 741fb1a95da2
child 43155 a83c9c79b722
py3: add a missing b'' prefix in test extension for chg Differential Revision: https://phab.mercurial-scm.org/D7038
tests/test-chg.t
--- a/tests/test-chg.t	Wed Oct 09 20:49:58 2019 -0700
+++ b/tests/test-chg.t	Wed Aug 28 17:45:18 2019 -0700
@@ -127,7 +127,7 @@
   > command = registrar.command(cmdtable)
   > @command(b'crash')
   > def pagercrash(ui, repo, *pats, **opts):
-  >     ui.write('going to crash\n')
+  >     ui.write(b'going to crash\n')
   >     raise Exception('.')
   > EOF