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:
authormattab <matthieu.aubry@gmail.com>2014-06-11 09:40:10 +0400
committermattab <matthieu.aubry@gmail.com>2014-06-11 09:40:10 +0400
commitf9a1354211da95c20eb7066d391f13a89aeacf54 (patch)
tree4e6f1ab45e844371017b32ee8a5ecbaed803e076
parent6b050cc6c00e9d3f1e0c496a19807195245050b5 (diff)
Fix typo from previous commit
-rw-r--r--tests/lib/screenshot-testing/config.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/lib/screenshot-testing/config.js b/tests/lib/screenshot-testing/config.js
index 3341acedd2..5e93ba3b02 100644
--- a/tests/lib/screenshot-testing/config.js
+++ b/tests/lib/screenshot-testing/config.js
@@ -10,7 +10,7 @@
/**
* The root Piwik URL to test against.
*/
-exports.piwikUrl = "http://localhost/piwik-master/";
+exports.piwikUrl = "http://localhost/";
/**
* Data for the $_SERVER variable in the setup/teardown PHP scripts. Should be the same as
@@ -18,7 +18,7 @@ exports.piwikUrl = "http://localhost/piwik-master/";
*/
exports.phpServer = {
HTTP_HOST: 'localhost',
- REQUEST_URI: '/piwik-master/',
+ REQUEST_URI: '/',
REMOTE_ADDR: '127.0.0.1'
};