aboutsummaryrefslogtreecommitdiff
path: root/robot-results-parser.py
diff options
context:
space:
mode:
Diffstat (limited to 'robot-results-parser.py')
-rwxr-xr-xrobot-results-parser.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/robot-results-parser.py b/robot-results-parser.py
index af394f8..a5fe6d1 100755
--- a/robot-results-parser.py
+++ b/robot-results-parser.py
@@ -32,7 +32,7 @@ for statistics in root.findall('statistics'):
for stat in suite.findall('stat'):
name = stat.get('name')
if '1' == stat.get('pass'):
- status = 'PASS'
+ status = 'pass'
else:
- status = 'FAIL'
+ status = 'fail'
print name, ":", status