Mercurial > public > mercurial-scm > hg-stable
diff tests/test-parseindex2.py @ 47157:47ffc754989a
revlog: always "append" full size tuple
Same reasoning as the previous patch.
Differential Revision: https://phab.mercurial-scm.org/D10569
author | Pierre-Yves David <pierre-yves.david@octobus.net> |
---|---|
date | Mon, 03 May 2021 12:21:25 +0200 |
parents | 4292bed8da7c |
children | 130c9f7ed914 |
line wrap: on
line diff
--- a/tests/test-parseindex2.py Mon May 03 12:21:15 2021 +0200 +++ b/tests/test-parseindex2.py Mon May 03 12:21:25 2021 +0200 @@ -264,7 +264,7 @@ # node won't matter for this test, let's just make sure # they don't collide. Other data don't matter either. node = hexrev(p1) + hexrev(p2) + b'.' * 12 - index.append((0, 0, 12, 1, 34, p1, p2, node)) + index.append((0, 0, 12, 1, 34, p1, p2, node, 0, 0)) appendrev(4) appendrev(5)