mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 03:18:26 +00:00
Fixing more tests after the massive search and replace
This commit is contained in:
parent
7ef1a2995a
commit
ef663f7d3f
2 changed files with 3 additions and 3 deletions
|
@ -348,11 +348,11 @@ class FolderTest extends CakeTestCase {
|
|||
|
||||
$result = $Folder->tree(CAKE . 'Config', false, 'dir');
|
||||
$this->assertIdentical(array_diff($expected[0], $result), array());
|
||||
$this->assertIdentical(array_diff($expected, $result[0]), array());
|
||||
$this->assertIdentical(array_diff($expected[0], $result), array());
|
||||
|
||||
$result = $Folder->tree(CAKE . 'Config', false, 'files');
|
||||
$this->assertIdentical(array_diff($expected[1], $result), array());
|
||||
$this->assertIdentical(array_diff($expected, $result[1]), array());
|
||||
$this->assertIdentical(array_diff($expected[1], $result), array());
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue