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/GeoIp2
parent5d2dab75e3654126ed95ea72b58b4c225ac59492 (diff)
Use \PHPUnit\FrameWork\TestCase instead of \PHPUnit_Framework_TestCase (#15554)
Diffstat (limited to 'plugins/GeoIp2')
-rw-r--r--plugins/GeoIp2/tests/Integration/LocationProviderTest.php2
-rw-r--r--plugins/GeoIp2/tests/Integration/UpdateTest.php2
2 files changed, 2 insertions, 2 deletions
diff --git a/plugins/GeoIp2/tests/Integration/LocationProviderTest.php b/plugins/GeoIp2/tests/Integration/LocationProviderTest.php
index 60c35c7438..bb681f7704 100644
--- a/plugins/GeoIp2/tests/Integration/LocationProviderTest.php
+++ b/plugins/GeoIp2/tests/Integration/LocationProviderTest.php
@@ -13,7 +13,7 @@ use Piwik\Plugins\GeoIp2\LocationProvider\GeoIp2;
/**
* @group GeoIp2
*/
-class LocationProviderTest extends \PHPUnit_Framework_TestCase
+class LocationProviderTest extends \PHPUnit\Framework\TestCase
{
public function testGeoIP2City()
{
diff --git a/plugins/GeoIp2/tests/Integration/UpdateTest.php b/plugins/GeoIp2/tests/Integration/UpdateTest.php
index cec89a5526..b92740bd2b 100644
--- a/plugins/GeoIp2/tests/Integration/UpdateTest.php
+++ b/plugins/GeoIp2/tests/Integration/UpdateTest.php
@@ -11,7 +11,7 @@ namespace Piwik\Plugins\GeoIp2\tests\Integration;
/**
* @group GeoIp2
*/
-class UpdateTest extends \PHPUnit_Framework_TestCase
+class UpdateTest extends \PHPUnit\Framework\TestCase
{
public function testEnsureFileForUpdateIsPresent()
{