# HG changeset patch # User Martin von Zweigbergk # Date 1567039518 25200 # Node ID f05d10ef42e399f3998028f73744da10ad3fabaf # Parent 741fb1a95da2c844413591abef248ae4508adffd py3: add a missing b'' prefix in test extension for chg Differential Revision: https://phab.mercurial-scm.org/D7038 diff -r 741fb1a95da2 -r f05d10ef42e3 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