mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 11:28:25 +00:00
Fixing failing tests.
This commit is contained in:
parent
75d7146bd0
commit
3c3655aefd
1 changed files with 3 additions and 3 deletions
|
@ -61,7 +61,7 @@ class HtmlCoverageReportTest extends CakeTestCase {
|
||||||
function testFilterCoverageDataByPathRemovingElements() {
|
function testFilterCoverageDataByPathRemovingElements() {
|
||||||
$data = array(
|
$data = array(
|
||||||
array(
|
array(
|
||||||
'files' => array(
|
'data' => array(
|
||||||
TEST_CAKE_CORE_INCLUDE_PATH . 'dispatcher.php' => array(
|
TEST_CAKE_CORE_INCLUDE_PATH . 'dispatcher.php' => array(
|
||||||
10 => -1,
|
10 => -1,
|
||||||
12 => 1
|
12 => 1
|
||||||
|
@ -87,7 +87,7 @@ class HtmlCoverageReportTest extends CakeTestCase {
|
||||||
function testFilterCoverageDataCorrectlyMergingValues() {
|
function testFilterCoverageDataCorrectlyMergingValues() {
|
||||||
$data = array(
|
$data = array(
|
||||||
array(
|
array(
|
||||||
'files' => array(
|
'data' => array(
|
||||||
TEST_CAKE_CORE_INCLUDE_PATH . 'dispatcher.php' => array(
|
TEST_CAKE_CORE_INCLUDE_PATH . 'dispatcher.php' => array(
|
||||||
10 => -1,
|
10 => -1,
|
||||||
12 => 1
|
12 => 1
|
||||||
|
@ -95,7 +95,7 @@ class HtmlCoverageReportTest extends CakeTestCase {
|
||||||
)
|
)
|
||||||
),
|
),
|
||||||
array(
|
array(
|
||||||
'files' => array(
|
'data' => array(
|
||||||
TEST_CAKE_CORE_INCLUDE_PATH . 'dispatcher.php' => array(
|
TEST_CAKE_CORE_INCLUDE_PATH . 'dispatcher.php' => array(
|
||||||
10 => 1,
|
10 => 1,
|
||||||
12 => -1,
|
12 => -1,
|
||||||
|
|
Loading…
Reference in a new issue