Skip to content

Commit

Permalink
Moving more direct GET access to params.
Browse files Browse the repository at this point in the history
  • Loading branch information
markstory committed Jan 6, 2010
1 parent 98cf758 commit 6b3e958
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cake/tests/lib/cake_test_suite_dispatcher.php
Expand Up @@ -245,10 +245,10 @@ function _runGroupTest() {
function _runTestCase() {
$Reporter =& CakeTestSuiteDispatcher::getReporter();
if ($this->params['codeCoverage']) {
CodeCoverageManager::start($_GET['case'], $Reporter);
CodeCoverageManager::start($this->params['case'], $Reporter);
}

$this->Manager->runTestCase($_GET['case'], $Reporter);
$this->Manager->runTestCase($this->params['case'], $Reporter);

if ($this->params['codeCoverage']) {
CodeCoverageManager::report();
Expand Down

0 comments on commit 6b3e958

Please sign in to comment.