Mercurial > public > mercurial-scm > hg-stable
diff tests/test-revlog-raw.py @ 35638:edc9330acac1
revlog: introduce 'deltainfo' to distinguish from 'delta'
A 'delta' is a binary diff between two revisions, as returned by revdiff.
A 'deltainfo' is an object storing information about a delta, including
the 'delta' itself.
Formerly, it was stored in a 7-position tuple, which was less readable.
author | Paul Morelle <paul.morelle@octobus.net> |
---|---|
date | Fri, 12 Jan 2018 18:58:44 +0100 |
parents | 1db9abf407c5 |
children | 33275ab5e837 |
line wrap: on
line diff
--- a/tests/test-revlog-raw.py Fri Jan 12 18:10:03 2018 +0100 +++ b/tests/test-revlog-raw.py Fri Jan 12 18:58:44 2018 +0100 @@ -20,7 +20,7 @@ # The test wants to control whether to use delta explicitly, based on # "storedeltachains". -revlog.revlog._isgooddelta = lambda self, d, textlen: self.storedeltachains +revlog.revlog._isgooddeltainfo = lambda self, d, textlen: self.storedeltachains def abort(msg): print('abort: %s' % msg)