Fix requires annotation to skip some tests on 5.6

This commit is contained in:
Matt Bonneau 2019-12-14 14:26:11 -05:00
parent 9d6d7d01d3
commit e7b72440c9

View File

@ -317,7 +317,7 @@ class MessageBufferTest extends \PHPUnit_Framework_TestCase
* @param int $expectedLimit
*
* @runInSeparateProcess
* @requires PHP >= 7.0
* @requires PHP 7.0
*/
public function testIniSizes($phpConfigurationValue, $expectedLimit) {
ini_set('memory_limit', $phpConfigurationValue);
@ -344,7 +344,7 @@ class MessageBufferTest extends \PHPUnit_Framework_TestCase
/**
* @runInSeparateProcess
* @requires PHP >= 7.0
* @requires PHP 7.0
*/
public function testInvalidIniSize() {
ini_set('memory_limit', 'lots of memory');