Submitter | Augie Fackler |
---|---|
Date | Aug. 28, 2017, 3:27 p.m. |
Message ID | <10362303381bb4e3ed51.1503934052@augie-macbookpro2.roam.corp.google.com> |
Download | mbox | patch |
Permalink | /patch/23425/ |
State | Accepted |
Headers | show |
Comments
Patch
diff --git a/tests/test-share.t b/tests/test-share.t --- a/tests/test-share.t +++ b/tests/test-share.t @@ -326,7 +326,12 @@ verify that bookmarks are not written on $ cat > failpullbookmarks.py << EOF > """A small extension that makes bookmark pulls fail, for testing""" - > from mercurial import extensions, exchange, error + > from __future__ import absolute_import + > from mercurial import ( + > error, + > exchange, + > extensions, + > ) > def _pullbookmarks(orig, pullop): > orig(pullop) > raise error.HookAbort('forced failure by extension')