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:
authorsgiehl <stefan@matomo.org>2020-12-07 14:46:24 +0300
committersgiehl <stefan@matomo.org>2020-12-07 14:46:24 +0300
commit959c7282707c19df63d17b903f9d0fdeed34fc21 (patch)
treeeae9e2f603205a8db91efece063468f197620a1d /tests/PHPUnit/Framework
parentc58267fcbf2fd55ca39685928d88f3505e212fd3 (diff)
fix invalid method calls in tests
Diffstat (limited to 'tests/PHPUnit/Framework')
-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;
}