# HG changeset patch # User Augie Fackler # Date 2017-08-22 19:50:35 # Node ID 90981271a9047670815212fc4aba58c489172125 # Parent 794f7bb739be9f5e16ab26e2f2d98fbbf8be5659 tests: update test-debugcommands to pass our import checker diff --git a/tests/test-debugcommands.t b/tests/test-debugcommands.t --- a/tests/test-debugcommands.t +++ b/tests/test-debugcommands.t @@ -132,25 +132,27 @@ Test cache warming command Test internal debugstacktrace command $ cat > debugstacktrace.py << EOF - > from mercurial.util import debugstacktrace, dst, sys + > from __future__ import absolute_import + > import sys + > from mercurial import util > def f(): - > debugstacktrace(f=sys.stdout) + > util.debugstacktrace(f=sys.stdout) > g() > def g(): - > dst('hello from g\\n', skip=1) + > util.dst('hello from g\\n', skip=1) > h() > def h(): - > dst('hi ...\\nfrom h hidden in g', 1, depth=2) + > util.dst('hi ...\\nfrom h hidden in g', 1, depth=2) > f() > EOF $ $PYTHON debugstacktrace.py stacktrace at: - debugstacktrace.py:10 in * (glob) - debugstacktrace.py:3 in f + debugstacktrace.py:12 in * (glob) + debugstacktrace.py:5 in f hello from g at: - debugstacktrace.py:10 in * (glob) - debugstacktrace.py:4 in f + debugstacktrace.py:12 in * (glob) + debugstacktrace.py:6 in f hi ... from h hidden in g at: - debugstacktrace.py:4 in f - debugstacktrace.py:7 in g + debugstacktrace.py:6 in f + debugstacktrace.py:9 in g