# HG changeset patch # User Pulkit Goyal <7895pulkit@gmail.com> # Date 2018-05-19 13:03:36 # Node ID 74c5ddd97008f88663fb1242a5620f74beea7bc7 # Parent 34592dd3bfa23bf4d006c8b52b5ee84d91951649 py3: add b'' prefixes in tests/test-rebuildstate.t # skip-blame because just b'' prefixes Differential Revision: https://phab.mercurial-scm.org/D3601 diff --git a/tests/test-rebuildstate.t b/tests/test-rebuildstate.t --- a/tests/test-rebuildstate.t +++ b/tests/test-rebuildstate.t @@ -4,9 +4,9 @@ > cmdtable = {} > command = registrar.command(cmdtable) > @command(b'debugadddrop', - > [('', 'drop', False, 'drop file from dirstate', 'FILE'), - > ('', 'normal-lookup', False, 'add file to dirstate', 'FILE')], - > 'hg debugadddrop') + > [(b'', b'drop', False, b'drop file from dirstate', b'FILE'), + > (b'', b'normal-lookup', False, b'add file to dirstate', b'FILE')], + > b'hg debugadddrop') > def debugadddrop(ui, repo, *pats, **opts): > '''Add or drop unnamed arguments to or from the dirstate''' > drop = opts.get('drop')