tests/test-histedit-edit.t
changeset 26587 56b2bcea2529
parent 25452 43906060a3f4
child 26998 4414d500604f
--- a/tests/test-histedit-edit.t	Mon Oct 05 22:49:24 2015 -0700
+++ b/tests/test-histedit-edit.t	Thu Oct 08 12:55:45 2015 -0700
@@ -298,11 +298,11 @@
 check saving last-message.txt, at first
 
   $ cat > $TESTTMP/commitfailure.py <<EOF
-  > from mercurial import util
+  > from mercurial import error
   > def reposetup(ui, repo):
   >     class commitfailure(repo.__class__):
   >         def commit(self, *args, **kwargs):
-  >             raise util.Abort('emulating unexpected abort')
+  >             raise error.Abort('emulating unexpected abort')
   >     repo.__class__ = commitfailure
   > EOF
   $ cat >> .hg/hgrc <<EOF