Cleanup for demo
Change-Id: Iaff367aff0cbdf3fb605ad5003612c4bcc35f6b6
diff --git a/TestON/core/logger.py b/TestON/core/logger.py
index 914f85d..437583e 100644
--- a/TestON/core/logger.py
+++ b/TestON/core/logger.py
@@ -186,9 +186,9 @@
wrapped = False
parsedMsg += colors['end']
elif "main.case(" in line:
- parsedMsg += colors['cyan'] + line + colors['end']
+ parsedMsg += colors['blue'] + line + colors['end']
elif "main.step" in line:
- parsedMsg += colors['red'] + line + colors['end']
+ parsedMsg += colors['cyan'] + line + colors['end']
elif "utilities.assert_" in line and "(" in line:
parsedMsg += colors['purple'] + line
if ')' not in line: