From 9b53319ee38a7f05c31b097497b68d3b0334b087 Mon Sep 17 00:00:00 2001 From: mark_story Date: Mon, 1 Oct 2012 22:24:48 -0400 Subject: [PATCH] Fix failing folder test. --- lib/Cake/Test/TestCase/Utility/FolderTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Cake/Test/TestCase/Utility/FolderTest.php b/lib/Cake/Test/TestCase/Utility/FolderTest.php index f08741da736..32b93752191 100644 --- a/lib/Cake/Test/TestCase/Utility/FolderTest.php +++ b/lib/Cake/Test/TestCase/Utility/FolderTest.php @@ -672,7 +672,7 @@ public function testFindRecursive() { $this->assertSame(array_diff($expected, $result), array()); $this->assertSame(array_diff($expected, $result), array()); - $result = $Folder->findRecursive('(config|paths)\.php', true); + $result = $Folder->findRecursive('(config|woot)\.php', true); $expected = array( CAKE . 'Config/config.php' );