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:
authorJean Baptiste Noblot <noblot.jb@gmail.com>2020-03-04 15:54:19 +0300
committerGitHub <noreply@github.com>2020-03-04 15:54:19 +0300
commite6903d20d5f3e881550b8de53af4071901d682c7 (patch)
tree7558e152016652f0c847d94ff584f9a6b9085c79
parenteeab0df80c9774019aec7f0fe129005abc513342 (diff)
Fix deprecated function (#15656)
-rw-r--r--tests/PHPUnit/System/CliMultiTest.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/PHPUnit/System/CliMultiTest.php b/tests/PHPUnit/System/CliMultiTest.php
index 04a6ba654f..ce211263ae 100644
--- a/tests/PHPUnit/System/CliMultiTest.php
+++ b/tests/PHPUnit/System/CliMultiTest.php
@@ -211,7 +211,7 @@ class CliMultiTest extends SystemTestCase
{
$actualResponse = $this->cliMulti->request($urls);
- $this->assertInternalType('array', $actualResponse);
+ self::assertIsArray($actualResponse, '$actualResponse is not an array');
$this->assertCount(count($expectedResponseIds), $actualResponse);
$expected = array();