tests/test-annotate.t
changeset 42141 0e41f40b01cc
parent 41773 151cc149b17f
child 42151 7116fc614cfc
equal deleted inserted replaced
42140:a4483e380c3e 42141:0e41f40b01cc
   436   > from __future__ import absolute_import
   436   > from __future__ import absolute_import
   437   > from mercurial import error, node
   437   > from mercurial import error, node
   438   > def reposetup(ui, repo):
   438   > def reposetup(ui, repo):
   439   >     class legacyrepo(repo.__class__):
   439   >     class legacyrepo(repo.__class__):
   440   >         def _filecommit(self, fctx, manifest1, manifest2,
   440   >         def _filecommit(self, fctx, manifest1, manifest2,
   441   >                         linkrev, tr, changelist):
   441   >                         linkrev, tr, changelist, includecopymeta):
   442   >             fname = fctx.path()
   442   >             fname = fctx.path()
   443   >             text = fctx.data()
   443   >             text = fctx.data()
   444   >             flog = self.file(fname)
   444   >             flog = self.file(fname)
   445   >             fparent1 = manifest1.get(fname, node.nullid)
   445   >             fparent1 = manifest1.get(fname, node.nullid)
   446   >             fparent2 = manifest2.get(fname, node.nullid)
   446   >             fparent2 = manifest2.get(fname, node.nullid)