Skip to content

Commit

Permalink
Merge pull request #6207 from cakephp/fix-segfault-php7
Browse files Browse the repository at this point in the history
Preventing PHP to segfault on PHP 7
  • Loading branch information
lorenzo committed Mar 30, 2015
2 parents 18f7287 + 9cd6c06 commit a3bbb12
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/TestCase/View/Helper/RssHelperTest.php
Expand Up @@ -598,7 +598,7 @@ public function testItemEnclosureLength()
$tmpFile = WWW_ROOT . 'tests/cakephp.file.test.tmp';
$File = new File($tmpFile, true);

$this->assertTrue($File->write('123'), 'Could not write to ' . $tmpFile);
$this->assertTrue($File->write('1234'), 'Could not write to ' . $tmpFile);

clearstatcache();

Expand Down

0 comments on commit a3bbb12

Please sign in to comment.