aboutsummaryrefslogtreecommitdiffstats
path: root/tests/lib/Updater/ChangesCheckTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/lib/Updater/ChangesCheckTest.php')
-rw-r--r--tests/lib/Updater/ChangesCheckTest.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/lib/Updater/ChangesCheckTest.php b/tests/lib/Updater/ChangesCheckTest.php
index 1bc8b47e58f..b3897ebbd07 100644
--- a/tests/lib/Updater/ChangesCheckTest.php
+++ b/tests/lib/Updater/ChangesCheckTest.php
@@ -348,8 +348,8 @@ class ChangesCheckTest extends TestCase {
public function changeDataProvider():array {
$testDataFound = $testDataNotFound = $this->versionProvider();
- array_walk($testDataFound, function(&$params) { $params[] = true; });
- array_walk($testDataNotFound, function(&$params) { $params[] = false; });
+ array_walk($testDataFound, function (&$params) { $params[] = true; });
+ array_walk($testDataNotFound, function (&$params) { $params[] = false; });
return array_merge($testDataFound, $testDataNotFound);
}