Skip to content

Commit 9e3ac4f

Browse files
ACPT-1599
fixing whitespace to pass static test
1 parent 226709e commit 9e3ac4f

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

lib/internal/Magento/Framework/App/Test/Unit/DeploymentConfigTest.php

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -350,7 +350,11 @@ public function testShouldReloadPreviouslyUnsetKeysAfterReset() : void
350350
$testValue = 42;
351351
$loadReturn = ['a' => ['a' => ['a' => 1]]];
352352
$this->readerMock->expects($this->any())->method('load')
353-
->will($this->returnCallback(function() use (&$loadReturn) { return $loadReturn;}));
353+
->will($this->returnCallback(
354+
function () use (&$loadReturn) {
355+
return $loadReturn;
356+
}
357+
));
354358
$this->deploymentConfig->get('a/a/a');
355359
$abcReturnValue1 = $this->deploymentConfig->get('a/b/c');
356360
$this->assertNull($abcReturnValue1); // first try, it isn't set yet.
@@ -360,5 +364,4 @@ public function testShouldReloadPreviouslyUnsetKeysAfterReset() : void
360364
$abcReturnValue2 = $this->deploymentConfig->get('a/b/c');
361365
$this->assertEquals($testValue, $abcReturnValue2); // second try, it should load the newly set value
362366
}
363-
364367
}

0 commit comments

Comments
 (0)