Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'tests/PHPUnit/Core/ReleaseCheckListTest.php')
-rw-r--r--tests/PHPUnit/Core/ReleaseCheckListTest.php8
1 files changed, 0 insertions, 8 deletions
diff --git a/tests/PHPUnit/Core/ReleaseCheckListTest.php b/tests/PHPUnit/Core/ReleaseCheckListTest.php
index 97aeace84a..0d8acb94e2 100644
--- a/tests/PHPUnit/Core/ReleaseCheckListTest.php
+++ b/tests/PHPUnit/Core/ReleaseCheckListTest.php
@@ -18,8 +18,6 @@ class ReleaseCheckListTest extends PHPUnit_Framework_TestCase
parent::setUp();
}
-
-
/**
* @group Core
*/
@@ -68,7 +66,6 @@ class ReleaseCheckListTest extends PHPUnit_Framework_TestCase
$this->checkFilesAreInJpgFormat($files);
}
-
/**
* @group Core
*/
@@ -88,11 +85,9 @@ class ReleaseCheckListTest extends PHPUnit_Framework_TestCase
$this->_checkEqual(array('log' => 'log_writers'), array('screen'));
$this->_checkEqual(array('log' => 'logger_api_call'), null);
-
require_once PIWIK_INCLUDE_PATH . "/core/TaskScheduler.php";
$this->assertFalse(DEBUG_FORCE_SCHEDULED_TASKS);
-
// Check the index.php has "backtrace disabled"
$content = file_get_contents(PIWIK_INCLUDE_PATH . "/index.php");
$expected = "define('PIWIK_PRINT_ERROR_BACKTRACE', false);";
@@ -171,7 +166,6 @@ class ReleaseCheckListTest extends PHPUnit_Framework_TestCase
$handle = fopen($file, "r");
$expectedStart = "<?php";
-
$isIniFile = strpos($file, ".ini.php") !== false || strpos($file, ".ini.travis.php") !== false;
if($isIniFile) {
$expectedStart = "; <?php exit;";
@@ -259,7 +253,6 @@ class ReleaseCheckListTest extends PHPUnit_Framework_TestCase
$this->assertTrue($count > $magicPlugins);
}
-
/**
* @group Core
*/
@@ -387,5 +380,4 @@ class ReleaseCheckListTest extends PHPUnit_Framework_TestCase
return $addedToGit;
}
-
}