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:
-rw-r--r--tests/PHPUnit/Framework/TestRequest/Response.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/PHPUnit/Framework/TestRequest/Response.php b/tests/PHPUnit/Framework/TestRequest/Response.php
index 1a7a588bcc..6d224d30a2 100644
--- a/tests/PHPUnit/Framework/TestRequest/Response.php
+++ b/tests/PHPUnit/Framework/TestRequest/Response.php
@@ -235,7 +235,7 @@ class Response
// check we didn't delete the whole string
if ($testNotSmallAfter && $input != $oldInput) {
- $this->assertTrue(strlen($input) > 100);
+ Asserts::assertTrue(strlen($input) > 100);
}
return $input;
}