Skip to content
Snippets Groups Projects
Commit fcb34c099259 authored by Gregory Szorc's avatar Gregory Szorc
Browse files

tests: remove __future__ import from test-debugcommands.t

This one is slightly more involved since it affects test output.

Differential Revision: https://phab.mercurial-scm.org/D12256
parent 42d2b31cee0b
No related branches found
No related tags found
1 merge request!168branching: merge default into stable
......@@ -570,7 +570,6 @@
Test internal debugstacktrace command
$ cat > debugstacktrace.py << EOF
> from __future__ import absolute_import
> from mercurial import (
> util,
> )
......@@ -589,6 +588,6 @@
> EOF
$ "$PYTHON" debugstacktrace.py
stacktrace at:
*debugstacktrace.py:16 in * (glob)
*debugstacktrace.py:9 in f (glob)
*debugstacktrace.py:15 in * (glob)
*debugstacktrace.py:8 in f (glob)
hello from g at:
......@@ -594,5 +593,5 @@
hello from g at:
*debugstacktrace.py:16 in * (glob)
*debugstacktrace.py:10 in f (glob)
*debugstacktrace.py:15 in * (glob)
*debugstacktrace.py:9 in f (glob)
hi ...
from h hidden in g at:
......@@ -597,7 +596,7 @@
hi ...
from h hidden in g at:
*debugstacktrace.py:10 in f (glob)
*debugstacktrace.py:13 in g (glob)
*debugstacktrace.py:9 in f (glob)
*debugstacktrace.py:12 in g (glob)
Test debugcapabilities command:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment