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:
authormattab <matthieu.aubry@gmail.com>2015-02-27 06:29:35 +0300
committermattab <matthieu.aubry@gmail.com>2015-02-27 06:29:35 +0300
commitfa12de0c353b1821a52f0f93432c16b66b7d621f (patch)
tree56ec7c5cb36d3be695b5bbb6f327eb8d86e66dce /tests/PHPUnit/Unit/DeprecatedMethodsTest.php
parentfffa24c111dc3ed92ba5b3fc8395e05384e86f99 (diff)
postponing deprecation window as we are planning 2.11.2 and we can't break API in minor version (semver).
they can be broken in 2.12.0 planned for March
Diffstat (limited to 'tests/PHPUnit/Unit/DeprecatedMethodsTest.php')
-rw-r--r--tests/PHPUnit/Unit/DeprecatedMethodsTest.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/PHPUnit/Unit/DeprecatedMethodsTest.php b/tests/PHPUnit/Unit/DeprecatedMethodsTest.php
index ffc1418631..4bb9788634 100644
--- a/tests/PHPUnit/Unit/DeprecatedMethodsTest.php
+++ b/tests/PHPUnit/Unit/DeprecatedMethodsTest.php
@@ -22,7 +22,7 @@ class DeprecatedMethodsTest extends \PHPUnit_Framework_TestCase
{
public function test_deprecations()
{
- $validTill = '2015-02-25';
+ $validTill = '2015-03-10';
$this->assertDeprecatedMethodIsRemoved('\Piwik\Period', 'factory', $validTill);
$this->assertDeprecatedMethodIsRemoved('\Piwik\Config', 'getConfigSuperUserForBackwardCompatibility', $validTill);
$this->assertDeprecatedMethodIsRemoved('\Piwik\Menu\MenuAdmin', 'addEntry', $validTill);
@@ -30,7 +30,7 @@ class DeprecatedMethodsTest extends \PHPUnit_Framework_TestCase
$this->assertDeprecatedMethodIsRemoved('\Piwik\Menu\MenuTop', 'addEntry', $validTill);
$this->assertDeprecatedMethodIsRemoved('\Piwik\Menu\MenuTop', 'removeEntry', $validTill);
- $validTill = '2015-02-06';
+ $validTill = '2015-03-10';
$this->assertDeprecatedClassIsRemoved('\IntegrationTestCase', $validTill);
$this->assertDeprecatedClassIsRemoved('\DatabaseTestCase', $validTill);
$this->assertDeprecatedClassIsRemoved('\BenchmarkTestCase', $validTill);
@@ -39,7 +39,7 @@ class DeprecatedMethodsTest extends \PHPUnit_Framework_TestCase
$this->assertDeprecatedClassIsRemoved('\Piwik\Tests\Fixture', $validTill);
$this->assertDeprecatedClassIsRemoved('\Piwik\Tests\OverrideLogin', $validTill);
- $validTill = '2015-03-01';
+ $validTill = '2015-03-10';
$this->assertDeprecatedMethodIsRemoved('Piwik\IP', 'sanitizeIp', $validTill);
$this->assertDeprecatedMethodIsRemoved('Piwik\IP', 'sanitizeIpRange', $validTill);
$this->assertDeprecatedMethodIsRemoved('Piwik\IP', 'P2N', $validTill);