Skip to content

Commit

Permalink
Fixing more tests after the massive search and replace
Browse files Browse the repository at this point in the history
  • Loading branch information
lorenzo committed May 17, 2011
1 parent 7ef1a29 commit ef663f7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions lib/Cake/Test/Case/Utility/FolderTest.php
Expand Up @@ -348,11 +348,11 @@ function testFolderTree() {

$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());
}

/**
Expand Down
2 changes: 1 addition & 1 deletion lib/Cake/Test/Case/Utility/StringTest.php
Expand Up @@ -326,7 +326,7 @@ function testWrap() {
This is the song th
at never ends. This
is the song that n
ever ends. This is
ever ends. This is
the song that never
ends.
TEXT;
Expand Down

0 comments on commit ef663f7

Please sign in to comment.