Mercurial > public > mercurial-scm > hg
diff tests/test-check-interfaces.py @ 44664:8c66a680f396
manifest: also declare treemanifest as implementing imanifestdict
It always has been intended to be, but it had a mismatched flags()
method until the previous change.
Differential Revision: https://phab.mercurial-scm.org/D8366
author | Augie Fackler <augie@google.com> |
---|---|
date | Mon, 03 Feb 2020 22:17:19 -0500 |
parents | c86256bd4eb8 |
children | 300f6e23882a |
line wrap: on
line diff
--- a/tests/test-check-interfaces.py Thu Apr 02 13:04:41 2020 -0400 +++ b/tests/test-check-interfaces.py Mon Feb 03 22:17:19 2020 -0500 @@ -211,6 +211,7 @@ ziverify.verifyClass(repository.ifilestorage, filelog.filelog) ziverify.verifyClass(repository.imanifestdict, manifest.manifestdict) + ziverify.verifyClass(repository.imanifestdict, manifest.treemanifest) ziverify.verifyClass( repository.imanifestrevisionstored, manifest.manifestctx )