Submitter | Boris Feld |
---|---|
Date | July 3, 2018, 10:32 a.m. |
Message ID | <0d2b1cf8cd7ecf819842.1530613944@FB-lair> |
Download | mbox | patch |
Permalink | /patch/32579/ |
State | Accepted |
Headers | show |
Comments
Patch
diff --git a/tests/test-context.py b/tests/test-context.py --- a/tests/test-context.py +++ b/tests/test-context.py @@ -10,6 +10,7 @@ from mercurial import ( scmutil, ui as uimod, ) +from mercurial.utils import diffutil print_ = print def print(*args, **kwargs): @@ -76,8 +77,8 @@ ctxb = context.memctx(repo, [ctxa.node() print(ctxb.status(ctxa)) # test performing a diff on a memctx - -for d in ctxb.diff(ctxa, opts={'git': True}): +diffopts = diffutil.diffopts(repo.ui, {'git': True}) +for d in ctxb.diff(ctxa, opts=diffopts): printb(d, end=b'') # test safeness and correctness of "ctx.status()"