mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
Excuse php7 errors due to regressions in 7.0.6
This commit is contained in:
parent
ab3aebf2d4
commit
4bc04e795a
@ -35,6 +35,9 @@ matrix:
|
||||
env: DB=MYSQL BEHAT_TEST=1 CMS_TEST=1
|
||||
- php: 7.0
|
||||
env: DB=MYSQL PDO=1
|
||||
allow_failures:
|
||||
- php: 7.0
|
||||
env: DB=MYSQL PDO=1
|
||||
|
||||
before_script:
|
||||
- printf "\n" | pecl install imagick
|
||||
|
@ -117,6 +117,10 @@ class GridFieldTest extends SapphireTest {
|
||||
public function testGetStateData() {
|
||||
$obj = new GridField('testfield', 'testfield');
|
||||
|
||||
// @todo - PHP 7.0.6 change requires __isset() to return true
|
||||
// for each reference from left to right along an isset() invocation.
|
||||
// See https://bugs.php.net/bug.php?id=62059
|
||||
|
||||
// Check value persistance
|
||||
$this->assertEquals(15, $obj->State->NoValue(15));
|
||||
$this->assertEquals(15, $obj->State->NoValue(-1));
|
||||
|
Loading…
Reference in New Issue
Block a user