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/Integration/HttpTest.php')
-rw-r--r--tests/PHPUnit/Integration/HttpTest.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/PHPUnit/Integration/HttpTest.php b/tests/PHPUnit/Integration/HttpTest.php
index f179276443..ef2585ad5d 100644
--- a/tests/PHPUnit/Integration/HttpTest.php
+++ b/tests/PHPUnit/Integration/HttpTest.php
@@ -42,7 +42,7 @@ class HttpTest extends \PHPUnit_Framework_TestCase
public function testFetchApiLatestVersion()
{
- $destinationPath = PIWIK_USER_PATH . '/tmp/latest/LATEST';
+ $destinationPath = PIWIK_DOCUMENT_ROOT . '/tmp/latest/LATEST';
Http::fetchRemoteFile(Fixture::getRootUrl(), $destinationPath, 3);
$this->assertFileExists($destinationPath);
$this->assertGreaterThan(0, filesize($destinationPath));
@@ -50,7 +50,7 @@ class HttpTest extends \PHPUnit_Framework_TestCase
public function testFetchLatestZip()
{
- $destinationPath = PIWIK_USER_PATH . '/tmp/latest/latest.zip';
+ $destinationPath = PIWIK_DOCUMENT_ROOT . '/tmp/latest/latest.zip';
Http::fetchRemoteFile(Fixture::getRootUrl() . 'tests/PHPUnit/Integration/Http/fixture.zip', $destinationPath, 3, 30);
$this->assertFileExists($destinationPath);
$this->assertGreaterThan(0, filesize($destinationPath));