diff options
author | Gabriel Caruso <carusogabriel34@gmail.com> | 2018-07-27 00:48:30 -0300 |
---|---|---|
committer | Gabriel Caruso <carusogabriel34@gmail.com> | 2018-07-27 00:48:30 -0300 |
commit | 7ec64a831d861a8a17ec40a46f6ae985769cc77f (patch) | |
tree | 637d47fc4c7a5f79a429b24cb6672ad894a1fd84 /ext/simplexml | |
parent | d035bc2bfe10a299d94ea46305612e587231c563 (diff) | |
download | php-git-7ec64a831d861a8a17ec40a46f6ae985769cc77f.tar.gz |
Remove superfluous check for PHP 7+ tests
Diffstat (limited to 'ext/simplexml')
-rw-r--r-- | ext/simplexml/tests/SimpleXMLElement_xpath_3.phpt | 1 | ||||
-rw-r--r-- | ext/simplexml/tests/SimpleXMLElement_xpath_4.phpt | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/ext/simplexml/tests/SimpleXMLElement_xpath_3.phpt b/ext/simplexml/tests/SimpleXMLElement_xpath_3.phpt index c968a33970..8682cf818d 100644 --- a/ext/simplexml/tests/SimpleXMLElement_xpath_3.phpt +++ b/ext/simplexml/tests/SimpleXMLElement_xpath_3.phpt @@ -2,7 +2,6 @@ Testing xpath() with invalid XML --SKIPIF-- <?php -if (PHP_MAJOR_VERSION < 7) die("skip this test is for PHP 7+ only"); if (PHP_INT_SIZE != 4) die("skip this test is for 32bit platforms only"); ?> --FILE-- diff --git a/ext/simplexml/tests/SimpleXMLElement_xpath_4.phpt b/ext/simplexml/tests/SimpleXMLElement_xpath_4.phpt index cb6b3ad08f..28e0517651 100644 --- a/ext/simplexml/tests/SimpleXMLElement_xpath_4.phpt +++ b/ext/simplexml/tests/SimpleXMLElement_xpath_4.phpt @@ -3,7 +3,6 @@ Testing xpath() with invalid XML --SKIPIF-- <?php if (!extension_loaded('simplexml')) die('skip simplexml extension not loaded'); -if (PHP_MAJOR_VERSION < 7) die("skip this test is for PHP 7+ only"); if (PHP_INT_SIZE != 8) die("skip this test is for 64bit platforms only"); ?> --FILE-- |