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:
authorStefan Giehl <stefan@matomo.org>2020-02-11 14:26:02 +0300
committerGitHub <noreply@github.com>2020-02-11 14:26:02 +0300
commitcce28d09be27006a12654f5cc5aeff7927eb0618 (patch)
treee4911acc644acb146f5b730cfe5510dcb7b58fdb /plugins/PrivacyManager
parent5d2dab75e3654126ed95ea72b58b4c225ac59492 (diff)
Use \PHPUnit\FrameWork\TestCase instead of \PHPUnit_Framework_TestCase (#15554)
Diffstat (limited to 'plugins/PrivacyManager')
-rw-r--r--plugins/PrivacyManager/tests/Unit/AnonymizeIPTest.php2
-rw-r--r--plugins/PrivacyManager/tests/Unit/DoNotTrackHeaderCheckerTest.php2
2 files changed, 2 insertions, 2 deletions
diff --git a/plugins/PrivacyManager/tests/Unit/AnonymizeIPTest.php b/plugins/PrivacyManager/tests/Unit/AnonymizeIPTest.php
index d0e331c1dd..b63b8ddab1 100644
--- a/plugins/PrivacyManager/tests/Unit/AnonymizeIPTest.php
+++ b/plugins/PrivacyManager/tests/Unit/AnonymizeIPTest.php
@@ -13,7 +13,7 @@ use Piwik\Plugins\PrivacyManager\IPAnonymizer;
require_once PIWIK_INCLUDE_PATH . '/plugins/PrivacyManager/IPAnonymizer.php';
-class AnonymizeIPTest extends \PHPUnit_Framework_TestCase
+class AnonymizeIPTest extends \PHPUnit\Framework\TestCase
{
// IPv4 addresses and expected results
public function getipv4Addresses()
diff --git a/plugins/PrivacyManager/tests/Unit/DoNotTrackHeaderCheckerTest.php b/plugins/PrivacyManager/tests/Unit/DoNotTrackHeaderCheckerTest.php
index 644138aeb6..fa27c8926c 100644
--- a/plugins/PrivacyManager/tests/Unit/DoNotTrackHeaderCheckerTest.php
+++ b/plugins/PrivacyManager/tests/Unit/DoNotTrackHeaderCheckerTest.php
@@ -16,7 +16,7 @@ use Piwik\Plugins\PrivacyManager\DoNotTrackHeaderChecker;
* Class DoNotTrackHeaderCheckerTest
* @group DoNotTrackHeaderCheckerTest
*/
-class DoNotTrackHeaderCheckerTest extends \PHPUnit_Framework_TestCase
+class DoNotTrackHeaderCheckerTest extends \PHPUnit\Framework\TestCase
{
public function setUp()
{