Skip to content
Snippets Groups Projects
Commit 2af38229 authored by Yuya Nishihara's avatar Yuya Nishihara
Browse files

test-log: test that fctx.ancestors() can't index parents only by linkrev

This covers a possible bug that could be caused by the following change:

  --- a/mercurial/context.py
  +++ b/mercurial/context.py
  @@ -1047,7 +1047,7 @@ class basefilectx(object):

           while True:
               for parent in c.parents()[:cut]:
  -                visit[(parent.linkrev(), parent.filenode())] = parent
  +                visit[parent.linkrev()] = parent
               if not visit:
                   break
               c = visit.pop(max(visit))
parent 44b8b5ad
No related merge requests found
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment