Mercurial > public > mercurial-scm > hg
diff tests/test-ancestor.py @ 23328:3a7d9c0c57a5
ancestor.lazyancestors: take parentrevs function rather than changelog
Principle of least privilege, and it also brings this in line with
missingancestors.
author | Siddharth Agarwal <sid0@fb.com> |
---|---|
date | Fri, 14 Nov 2014 14:36:25 -0800 |
parents | 731b2a90983b |
children | c6cd4b8b76f8 |
line wrap: on
line diff
--- a/tests/test-ancestor.py Sun Nov 16 00:24:23 2014 -0500 +++ b/tests/test-ancestor.py Fri Nov 14 14:36:25 2014 -0800 @@ -34,9 +34,6 @@ 13: [8]} pfunc = graph.get -class mockchangelog(object): - parentrevs = graph.get - def runmissingancestors(revs, bases): print "%% ancestors of %s and not of %s" % (revs, bases) print ancestor.missingancestors(revs, bases, pfunc) @@ -76,7 +73,7 @@ def genlazyancestors(revs, stoprev=0, inclusive=False): print ("%% lazy ancestor set for %s, stoprev = %s, inclusive = %s" % (revs, stoprev, inclusive)) - return ancestor.lazyancestors(mockchangelog, revs, stoprev=stoprev, + return ancestor.lazyancestors(graph.get, revs, stoprev=stoprev, inclusive=inclusive) def printlazyancestors(s, l):