mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2025-01-31 09:06:17 +00:00
Removing the last exclusion from the AllHelper group.
This commit is contained in:
parent
1a52442057
commit
1e6064ceae
1 changed files with 1 additions and 4 deletions
|
@ -42,11 +42,8 @@ class AllHelpersTest extends PHPUnit_Framework_TestSuite {
|
|||
|
||||
$helperIterator = new DirectoryIterator(CORE_TEST_CASES . DS . 'libs' . DS . 'view' . DS . 'helpers' . DS);
|
||||
|
||||
// The following test cases cause segfaults for me.
|
||||
$segfaulty = array('cache.test.php');
|
||||
|
||||
foreach ($helperIterator as $i => $file) {
|
||||
if (!$file->isDot() && !in_array($file->getFilename(), $segfaulty)) {
|
||||
if (!$file->isDot()) {
|
||||
$suite->addTestfile($file->getPathname());
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue