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
path: root/tests
diff options
context:
space:
mode:
authormattab <matthieu.aubry@gmail.com>2014-08-10 17:56:01 +0400
committermattab <matthieu.aubry@gmail.com>2014-08-10 17:56:01 +0400
commit259eec366f52b4d5c07bfee501e928cb105a3ed9 (patch)
tree4ebb8b93fae23f0eca08c3405f3b082a666c7919 /tests
parent312ac10d6a1cc37ba094fe895583254687662289 (diff)
Maybe fixing tests
Diffstat (limited to 'tests')
-rw-r--r--tests/PHPUnit/Impl/TestRequestResponse.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/PHPUnit/Impl/TestRequestResponse.php b/tests/PHPUnit/Impl/TestRequestResponse.php
index 78924d1b8d..736c82b7cb 100644
--- a/tests/PHPUnit/Impl/TestRequestResponse.php
+++ b/tests/PHPUnit/Impl/TestRequestResponse.php
@@ -115,7 +115,7 @@ class TestRequestResponse
|| strpos($apiResponse, '<result>') === false) {
return $apiResponse;
}
- return str_replace("'", '&amp;#039;', $apiResponse);
+ return str_replace('&amp;#039;', "'", $apiResponse);
}
private function removeIdSubtableParamFromUrlsInResponse($apiResponse)