Revert "Issue #2932606 by jibran, alexpott: Use PHPUnit 6 for PHP 7.0 / 7.1 testing"

This reverts commit 7d0b699e56.
merge-requests/1654/head
Nathaniel Catchpole 2018-04-02 11:43:37 +01:00
parent ec185f16e2
commit 00a526a9c5
1 changed files with 1 additions and 1 deletions

View File

@ -182,7 +182,7 @@ EOT;
* TRUE if the PHPUnit needs to be upgraded, FALSE if not.
*/
public static function upgradePHPUnitCheck($phpunit_version) {
return !(version_compare(PHP_MAJOR_VERSION . '.' . PHP_MINOR_VERSION, '7.0') >= 0 && version_compare($phpunit_version, '6.1') < 0);
return !(version_compare(PHP_MAJOR_VERSION . '.' . PHP_MINOR_VERSION, '7.2') >= 0 && version_compare($phpunit_version, '6.1') < 0);
}
/**