Skip to content

Commit 9d39fa2

Browse files
committed
Run phpcbf to fix static tests
1 parent ef90bc5 commit 9d39fa2

File tree

1 file changed

+12
-7
lines changed

1 file changed

+12
-7
lines changed

app/code/Magento/Config/Test/Unit/Model/Config/Reader/Source/Deployed/SettingCheckerTest.php

Lines changed: 12 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -96,13 +96,18 @@ public function testIsReadonly($path, $scope, $scopeCode, $confValue, array $var
9696

9797
$this->configMock->expects($this->any())
9898
->method('get')
99-
->willReturnMap(array_merge([
100-
[
101-
'system/' . $scope . "/" . ($scopeCode ? $scopeCode . '/' : '') . $path,
102-
null,
103-
$confValue
104-
],
105-
], $configMap));
99+
->willReturnMap(
100+
array_merge(
101+
[
102+
[
103+
'system/' . $scope . "/" . ($scopeCode ? $scopeCode . '/' : '') . $path,
104+
null,
105+
$confValue
106+
],
107+
],
108+
$configMap
109+
)
110+
);
106111

107112
$this->assertSame($expectedResult, $this->checker->isReadOnly($path, $scope, $scopeCode));
108113
}

0 commit comments

Comments
 (0)