From e243a4e795d56c2de2c158eb7ee88d0986908c44 Mon Sep 17 00:00:00 2001 From: Arne Blankerts Date: Tue, 26 Jul 2016 16:00:46 +0200 Subject: [PATCH] Add missing status type 6 (warning) --- src/Report/Xml/Tests.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Report/Xml/Tests.php b/src/Report/Xml/Tests.php index 5ce20714a..b569b031a 100644 --- a/src/Report/Xml/Tests.php +++ b/src/Report/Xml/Tests.php @@ -20,7 +20,8 @@ class Tests 2 => 'INCOMPLETE', // PHPUnit_Runner_BaseTestRunner::STATUS_INCOMPLETE 3 => 'FAILURE', // PHPUnit_Runner_BaseTestRunner::STATUS_FAILURE 4 => 'ERROR', // PHPUnit_Runner_BaseTestRunner::STATUS_ERROR - 5 => 'RISKY' // PHPUnit_Runner_BaseTestRunner::STATUS_RISKY + 5 => 'RISKY', // PHPUnit_Runner_BaseTestRunner::STATUS_RISKY + 6 => 'WARNING' // PHPUnit_Runner_BaseTestRunner::STATUS_WARNING ]; public function __construct(\DOMElement $context)