diff options
Diffstat (limited to 'tests/test_cmd2.py')
-rw-r--r-- | tests/test_cmd2.py | 2 |
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): |