summaryrefslogtreecommitdiffstats
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.php12
1 files changed, 8 insertions, 4 deletions
diff --git a/tests/lib/Updater/ChangesCheckTest.php b/tests/lib/Updater/ChangesCheckTest.php
index b3897ebbd07..4d7dce43ee1 100644
--- a/tests/lib/Updater/ChangesCheckTest.php
+++ b/tests/lib/Updater/ChangesCheckTest.php
@@ -77,7 +77,7 @@ class ChangesCheckTest extends TestCase {
->method('getStatusCode')
->willReturn($statusCode);
- if(!in_array($statusCode, [200, 304, 404])) {
+ if (!in_array($statusCode, [200, 304, 404])) {
$this->logger->expects($this->once())
->method('debug');
}
@@ -348,8 +348,12 @@ 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);
}
@@ -362,7 +366,7 @@ class ChangesCheckTest extends TestCase {
->method('getChanges')
->with($normalizedVersion);
- if(!$isFound) {
+ if (!$isFound) {
$this->expectException(DoesNotExistException::class);
$mocker->willThrowException(new DoesNotExistException('Changes info is not present'));
} else {