diff options
author | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2018-03-02 17:28:52 -0500 |
---|---|---|
committer | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2018-03-02 17:28:52 -0500 |
commit | d0d98f0aea35fcd378fc93f02d8449030b1ba454 (patch) | |
tree | ca2ac2a2852ebaeb9ec9e9543ae2ae1945850504 /tests/conftest.py | |
parent | 17781f27c49b961526c7e3a5302482744e6a038b (diff) | |
download | cmd2-git-d0d98f0aea35fcd378fc93f02d8449030b1ba454.tar.gz |
Removed abbrev attribute
Diffstat (limited to 'tests/conftest.py')
-rw-r--r-- | tests/conftest.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/tests/conftest.py b/tests/conftest.py index 319e54fe..5ee5dd58 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -53,8 +53,7 @@ expect_colors = True if sys.platform.startswith('win'): expect_colors = False # Output from the show command with default settings -SHOW_TXT = """abbrev: False -colors: {} +SHOW_TXT = """colors: {} continuation_prompt: > debug: False echo: False @@ -71,7 +70,6 @@ if expect_colors: else: color_str = 'False' SHOW_LONG = """ -abbrev: False # Accept abbreviated commands colors: {} # Colorized output (*nix only) continuation_prompt: > # On 2nd+ line of input debug: False # Show full error stack on error |