diff tests/test-annotate.py @ 36917:7affcabf561e

dagop: move annotateline and _annotatepair from context.py The annotate logic is large. Let's move it out of the context module, which is basically an abstraction layer of repository operations.
author Yuya Nishihara <yuya@tcha.org>
date Wed, 28 Feb 2018 15:09:05 -0500
parents a36d3c8a0e41
children ec46b0ee2e3c
line wrap: on
line diff
--- a/tests/test-annotate.py	Fri Mar 09 21:59:07 2018 -0500
+++ b/tests/test-annotate.py	Wed Feb 28 15:09:05 2018 -0500
@@ -6,7 +6,7 @@
 from mercurial import (
     mdiff,
 )
-from mercurial.context import (
+from mercurial.dagop import (
     annotateline,
     _annotatepair,
 )