summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTodd Leonhardt <todd.leonhardt@gmail.com>2017-02-04 17:40:37 -0500
committerTodd Leonhardt <todd.leonhardt@gmail.com>2017-02-04 17:40:37 -0500
commita1405b210fba17cc86eecd1a3b84e3ea6c4d4ec7 (patch)
tree262dfeb92da12110b052493f0c25bd19740b0f06
parent696542a7fe7248b403da2833d2a41b15b4c4b750 (diff)
downloadcmd2-git-a1405b210fba17cc86eecd1a3b84e3ea6c4d4ec7.tar.gz
Fix cut-and-paste mistake
-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 83a3b9cf..5626085f 100644
--- a/tests/test_cmd2.py
+++ b/tests/test_cmd2.py
@@ -354,7 +354,7 @@ def test_base_colorize(base_app):
color_test = fresh_app.colorize('Test', 'red')
# Actually, colorization only ANSI escape codes is only applied on non-Windows systems
if sys.platform == 'win32':
- assert out.startswith('Elapsed: 0:00:00')
+ assert color_test == 'Test'
else:
assert color_test == '\x1b[31mTest\x1b[39m'