summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorDaniel Ahn <sangbumahn@gmail.com>2019-06-24 19:58:53 -0700
committerDaniel Ahn <sangbumahn@gmail.com>2019-06-24 19:58:53 -0700
commitba2a9ae6aef048160fa7e183cb5fa5bc6bd87d7b (patch)
tree7036d5441e3808b4a2a804144acf15997bbf1075 /tests
parent2461740fc18e9d7fd0eb7aab20fcc168d2318dd0 (diff)
downloadcmd2-git-ba2a9ae6aef048160fa7e183cb5fa5bc6bd87d7b.tar.gz
Revert change in test_poutput_color_always
Diffstat (limited to 'tests')
-rw-r--r--tests/test_cmd2.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_cmd2.py b/tests/test_cmd2.py
index 99176415..dac034ef 100644
--- a/tests/test_cmd2.py
+++ b/tests/test_cmd2.py
@@ -1462,7 +1462,7 @@ def test_poutput_color_always(outsim_app):
outsim_app.colors = 'Always'
outsim_app.poutput(msg, fg='cyan')
out = outsim_app.stdout.getvalue()
- expected = Fore.CYAN + msg + Style.RESET_ALL + '\n'
+ expected = Fore.CYAN + msg + Fore.RESET + '\n'
assert out == expected
def test_poutput_color_never(outsim_app):