Skip to content

Commit

Permalink
Change default value to allow code coverage on non-app files.
Browse files Browse the repository at this point in the history
Don't default to app, as it prevents generating code coverage for core
and plugin files.

Fixes #6533
  • Loading branch information
markstory committed May 11, 2015
1 parent f82280f commit 6cb21e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Cake/TestSuite/CakeTestSuiteDispatcher.php
Expand Up @@ -37,7 +37,7 @@ class CakeTestSuiteDispatcher {
'codeCoverage' => false,
'case' => null,
'core' => false,
'app' => true,
'app' => false,
'plugin' => null,
'output' => 'html',
'show' => 'groups',
Expand Down

0 comments on commit 6cb21e6

Please sign in to comment.