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:
authorBenaka Moorthi <benaka.moorthi@gmail.com>2013-09-27 09:53:54 +0400
committerBenaka Moorthi <benaka.moorthi@gmail.com>2013-09-27 09:53:54 +0400
commitf87399662c312a4f614089e7d3553c1c8b0681a8 (patch)
treea9cb0c0def910682edd5bb079aa0472df7c78052 /tests/PHPUnit/bootstrap.php
parentcf54de4392eaec2b1abb48d3bcb1677ae32e8dee (diff)
Try fixing travis build (by making Db connection lazily created singleton).
Diffstat (limited to 'tests/PHPUnit/bootstrap.php')
-rw-r--r--tests/PHPUnit/bootstrap.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/PHPUnit/bootstrap.php b/tests/PHPUnit/bootstrap.php
index f9194090c3..a4148e9f3f 100644
--- a/tests/PHPUnit/bootstrap.php
+++ b/tests/PHPUnit/bootstrap.php
@@ -96,7 +96,7 @@ Try again.
// Now testing if the webserver is running
$piwikServerUrl = Test_Piwik_BaseFixture::getRootUrl();
try {
- $fetched = Http::sendHttpRequest($piwikServerUrl . 'tests/PHPUnit/proxy/index.php', $timeout = 3);
+ $fetched = Http::sendHttpRequest($piwikServerUrl, $timeout = 3);
} catch (Exception $e) {
$fetched = "ERROR fetching: " . $e->getMessage();
}