Do not skip test if IIS is defined
Signed-off-by: Michal Čihař <michal@cihar.com>
This commit is contained in:
parent
1bddcff0d5
commit
9bd4844c26
@ -234,7 +234,7 @@ class PMA_HeaderLocation_Test extends PHPUnit_Framework_TestCase
|
||||
runkit_constant_redefine('PMA_IS_IIS', true);
|
||||
} elseif (!defined('PMA_IS_IIS')) {
|
||||
define('PMA_IS_IIS', true);
|
||||
} else {
|
||||
} elseif (! PMA_IS_IIS) {
|
||||
$this->markTestSkipped(
|
||||
'Cannot redefine constant/function - missing runkit extension'
|
||||
);
|
||||
|
||||
Loading…
Reference in New Issue
Block a user