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>2014-09-16 07:20:15 +0400
committermattab <matthieu.aubry@gmail.com>2014-09-16 07:20:15 +0400
commit8a27cf0578fbadef41aad643417cae8154199423 (patch)
tree89ffc17adf43be2f7feee3427878b7beb0eef098 /tests/PHPUnit/Core
parentd0b552798f4f770dc58c963c6b780a381b7bafe4 (diff)
Postponing deprecation timeline
Diffstat (limited to 'tests/PHPUnit/Core')
-rw-r--r--tests/PHPUnit/Core/DeprecatedMethodsTest.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/PHPUnit/Core/DeprecatedMethodsTest.php b/tests/PHPUnit/Core/DeprecatedMethodsTest.php
index 47bbddb2d2..6bbcc64110 100644
--- a/tests/PHPUnit/Core/DeprecatedMethodsTest.php
+++ b/tests/PHPUnit/Core/DeprecatedMethodsTest.php
@@ -17,17 +17,17 @@ class DeprecatedMethodsTest extends PHPUnit_Framework_TestCase
public function test_version2_0_4()
{
- $validTill = '2014-09-15';
+ $validTill = '2014-10-20';
$this->assertDeprecatedMethodIsRemoved('\Piwik\Period', 'factory', $validTill);
- $validTill = '2014-10-01';
+ $validTill = '2014-10-20';
$this->assertDeprecatedMethodIsRemoved('\Piwik\Config', 'getConfigSuperUserForBackwardCompatibility', $validTill);
$this->assertDeprecatedMethodIsRemoved('\Piwik\Menu\MenuAdmin', 'addEntry', $validTill);
$this->assertDeprecatedMethodIsRemoved('\Piwik\Menu\MenuAdmin', 'removeEntry', $validTill);
$this->assertDeprecatedMethodIsRemoved('\Piwik\Menu\MenuTop', 'addEntry', $validTill);
$this->assertDeprecatedMethodIsRemoved('\Piwik\Menu\MenuTop', 'removeEntry', $validTill);
- $validTill = '2014-10-15';
+ $validTill = '2014-10-20';
$this->assertDeprecatedMethodIsRemoved('\Piwik\SettingsPiwik', 'rewriteTmpPathWithHostname', $validTill);
$this->assertDeprecatedMethodIsRemovedInPiwik3('\Piwik\Menu\MenuAbstract', 'add');