Skip to content

Commit

Permalink
Fix spacing for coding standards
Browse files Browse the repository at this point in the history
  • Loading branch information
shama committed Dec 10, 2011
1 parent 7fa1984 commit 17fcd05
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Cake/TestSuite/CakeTestSuite.php
Expand Up @@ -52,7 +52,7 @@ public function addTestDirectoryRecursive($directory = '.') {
$files = $Folder->tree(null, false, 'files');

foreach ($files as $file) {
if (strpos($file, DS.'.') !== false) {
if (strpos($file, DS . '.') !== false) {
continue;
}
$this->addTestFile($file);
Expand Down

0 comments on commit 17fcd05

Please sign in to comment.