Mercurial > hg
changeset 33953:90981271a904
tests: update test-debugcommands to pass our import checker
author | Augie Fackler <raf@durin42.com> |
---|---|
date | Tue, 22 Aug 2017 15:50:35 -0400 |
parents | 794f7bb739be |
children | b9765319880e |
files | tests/test-debugcommands.t |
diffstat | 1 files changed, 12 insertions(+), 10 deletions(-) [+] |
line wrap: on
line diff
--- a/tests/test-debugcommands.t Tue Aug 22 15:50:27 2017 -0400 +++ b/tests/test-debugcommands.t Tue Aug 22 15:50:35 2017 -0400 @@ -132,25 +132,27 @@ 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