# HG changeset patch # User Augie Fackler # Date 2018-07-11 16:36:37 # Node ID a75896bf5ccbc9a261770ac6400a7923866028c4 # Parent 28c9d67d88aba5053879857b9b11f05b5f78da82 tests: add missing b prefix in test-context.py # skip-blame just a b prefix Differential Revision: https://phab.mercurial-scm.org/D3925 diff --git a/tests/test-context.py b/tests/test-context.py --- a/tests/test-context.py +++ b/tests/test-context.py @@ -77,7 +77,7 @@ ctxb = context.memctx(repo, [ctxa.node() print(ctxb.status(ctxa)) # test performing a diff on a memctx -diffopts = diffutil.diffallopts(repo.ui, {'git': True}) +diffopts = diffutil.diffallopts(repo.ui, {b'git': True}) for d in ctxb.diff(ctxa, opts=diffopts): printb(d, end=b'')