Browse Source

Fixing test breaks.

tags/2.0.0-beta
Qiang Xue 12 years ago
parent
commit
a8d2eded98
  1. 2
      framework/yii/helpers/base/FileHelper.php
  2. 1
      tests/unit/framework/helpers/FileHelperTest.php

2
framework/yii/helpers/base/FileHelper.php

@ -251,7 +251,7 @@ class FileHelper
* the supported options. * the supported options.
* @return boolean whether the file or directory satisfies the filtering options. * @return boolean whether the file or directory satisfies the filtering options.
*/ */
protected static function filterPath($path, $options) public static function filterPath($path, $options)
{ {
if (isset($options['filter']) && !call_user_func($options['filter'], $path)) { if (isset($options['filter']) && !call_user_func($options['filter'], $path)) {
return false; return false;

1
tests/unit/framework/helpers/FileHelperTest.php

@ -215,6 +215,7 @@ class FileHelperTest extends TestCase
$foundFiles = FileHelper::findFiles($dirName); $foundFiles = FileHelper::findFiles($dirName);
sort($expectedFiles); sort($expectedFiles);
sort($foundFiles);
$this->assertEquals($expectedFiles, $foundFiles); $this->assertEquals($expectedFiles, $foundFiles);
} }

Loading…
Cancel
Save