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/Plugins/ProxyTest.php')
-rw-r--r--tests/PHPUnit/Plugins/ProxyTest.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/PHPUnit/Plugins/ProxyTest.php b/tests/PHPUnit/Plugins/ProxyTest.php
index 31a67aa0d9..b21c13a28f 100644
--- a/tests/PHPUnit/Plugins/ProxyTest.php
+++ b/tests/PHPUnit/Plugins/ProxyTest.php
@@ -5,6 +5,8 @@
* @link http://piwik.org
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
*/
+use Piwik\Plugins\Proxy\Controller;
+
class ProxyTest extends PHPUnit_Framework_TestCase
{
public function getAcceptableRemoteUrls()
@@ -33,7 +35,7 @@ class ProxyTest extends PHPUnit_Framework_TestCase
*/
public function testIsAcceptableRemoteUrl($url, $expected)
{
- $this->assertEquals($expected, Piwik_Proxy_Controller::isPiwikUrl($url));
+ $this->assertEquals($expected, Controller::isPiwikUrl($url));
}
}