# HG changeset patch # User Boris Feld # Date 2018-11-13 13:41:04 # Node ID a3183ca7ce8f1cad9ae27fa803f77228e9484936 # Parent 437520219e0cc6a5e6f6dd4b644929b32eb52dc5 tests: add `revlogutils.deltas` module to doctests The doctest in these module have been from `mercurial.revlog` but the module was not added to the doctests. Spotted by Yuya Nishihara. diff --git a/tests/test-doctest.py b/tests/test-doctest.py --- a/tests/test-doctest.py +++ b/tests/test-doctest.py @@ -61,6 +61,7 @@ testmod('mercurial.pathutil') testmod('mercurial.parser') testmod('mercurial.pycompat') testmod('mercurial.revlog') +testmod('mercurial.revlogutils.deltas') testmod('mercurial.revsetlang') testmod('mercurial.smartset') testmod('mercurial.store')