# HG changeset patch # User Pierre-Yves David # Date 1493894510 -7200 # Node ID d62626233aa2046366264dc18c2f0ce617c77232 # Parent 42efb1b2cfb823e2fd76c3faa45ad28e8148f46e tests: directly 'getchangegroup' It is identical to 'getlocalchangegroup' with a shorter name. diff -r 42efb1b2cfb8 -r d62626233aa2 tests/test-bundle2-format.t --- a/tests/test-bundle2-format.t Thu May 04 12:41:36 2017 +0200 +++ b/tests/test-bundle2-format.t Thu May 04 12:41:50 2017 +0200 @@ -113,7 +113,7 @@ > headmissing = [c.node() for c in repo.set('heads(%ld)', revs)] > headcommon = [c.node() for c in repo.set('parents(%ld) - %ld', revs, revs)] > outgoing = discovery.outgoing(repo, headcommon, headmissing) - > cg = changegroup.getlocalchangegroup(repo, 'test:bundle2', outgoing) + > cg = changegroup.getchangegroup(repo, 'test:bundle2', outgoing) > bundler.newpart('changegroup', data=cg.getchunks(), > mandatory=False) >