diff options
author | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2020-01-08 17:11:17 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-08 17:11:17 -0500 |
commit | db093b630ed487838337a04a28af79475d37d1e0 (patch) | |
tree | d78cd5fcbb4946206377a162bbcb3b7c01576d15 /tests/conftest.py | |
parent | 97dd6f37482510cfc424049ff0b0369b79e34335 (diff) | |
parent | 383853ee92f69c3e4ccadacd34e0f22e1e896345 (diff) | |
download | cmd2-git-db093b630ed487838337a04a28af79475d37d1e0.tar.gz |
Merge pull request #843 from python-cmd2/ansi_to_style
ansi to style
Diffstat (limited to 'tests/conftest.py')
-rw-r--r-- | tests/conftest.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/conftest.py b/tests/conftest.py index 6b7c5aff..fe74ffe2 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -88,7 +88,7 @@ SHORTCUTS_TXT = """Shortcuts for other commands: """ # Output from the show command with default settings -SHOW_TXT = """allow_ansi: Terminal +SHOW_TXT = """allow_style: Terminal continuation_prompt: > debug: False echo: False @@ -102,7 +102,7 @@ timing: False """ SHOW_LONG = """ -allow_ansi: Terminal # Allow ANSI escape sequences in output (valid values: Terminal, Always, Never) +allow_style: Terminal # Allow ANSI text style sequences in output (valid values: Terminal, Always, Never) continuation_prompt: > # On 2nd+ line of input debug: False # Show full error stack on error echo: False # Echo command issued into output |