mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 03:18:26 +00:00
Moving more direct GET access to params.
This commit is contained in:
parent
98cf758a98
commit
6b3e9583bf
1 changed files with 2 additions and 2 deletions
|
@ -245,10 +245,10 @@ class CakeTestSuiteDispatcher {
|
|||
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();
|
||||
|
|
Loading…
Reference in a new issue