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:
Diffstat (limited to 'plugins/CoreAdminHome')
-rw-r--r--plugins/CoreAdminHome/tests/Integration/TasksTest.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/CoreAdminHome/tests/Integration/TasksTest.php b/plugins/CoreAdminHome/tests/Integration/TasksTest.php
index 0c30071eb1..d3ffc66518 100644
--- a/plugins/CoreAdminHome/tests/Integration/TasksTest.php
+++ b/plugins/CoreAdminHome/tests/Integration/TasksTest.php
@@ -198,11 +198,11 @@ class TasksTest extends IntegrationTestCase
public function provideContainerConfig()
{
return [
- 'observers.global' => [
+ 'observers.global' => \DI\add([
['Mail.send', function (Mail $mail) {
$this->mail = $mail;
}],
- ],
+ ]),
];
}