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:
authorStefan Giehl <stefan@matomo.org>2021-12-21 11:26:16 +0300
committerGitHub <noreply@github.com>2021-12-21 11:26:16 +0300
commit338f67e5e2c1ea42253a6b54643c50ddb6fc660a (patch)
tree6e685715ec5ab021a334b9feef1b4d382c573ee6 /plugins
parent354c84d7f7f6f1739c6ddb1ff379ea6711c22db6 (diff)
Updates matomo/ini composer dependency (#18518)
* Updates matomo/ini composer dependency * fix tests
Diffstat (limited to 'plugins')
-rw-r--r--plugins/CoreAdminHome/tests/Integration/Commands/SetConfigTest.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/CoreAdminHome/tests/Integration/Commands/SetConfigTest.php b/plugins/CoreAdminHome/tests/Integration/Commands/SetConfigTest.php
index 9049f1ac09..ef6dc6b37b 100644
--- a/plugins/CoreAdminHome/tests/Integration/Commands/SetConfigTest.php
+++ b/plugins/CoreAdminHome/tests/Integration/Commands/SetConfigTest.php
@@ -129,7 +129,7 @@ class SetConfigTest extends ConsoleCommandTestCase
$this->assertEquals('+', $config->General['action_url_category_delimiter']);
$this->assertEquals(array('www.trustedhost.com', 'www.trustedhost2.com'), $config->General['trusted_hosts']);
$this->assertEquals(array('abc', 'def'), $config->MySection['array_value']);
- $this->assertEquals(array('def'), $config->MySection['object_value']);
+ $this->assertEquals(array('abc' => 'def'), $config->MySection['object_value']);
$this->assertArrayNotHasKey('other_array_value', $config->MySection);
self::assertStringContainsString("done.", $this->applicationTester->getDisplay());