Skip to content

Commit c2e729f

Browse files
committed
B2B-2134: [AWS S3] setup:config:set command is removing S3 configuration
Static fixes
1 parent 7d8419a commit c2e729f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

app/code/Magento/RemoteStorage/Test/Unit/Setup/ConfigOptionsListTest.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@
88

99
use Magento\Framework\App\DeploymentConfig;
1010
use Magento\Framework\Exception\LocalizedException;
11+
use Magento\RemoteStorage\Driver\DriverFactoryInterface;
1112
use Magento\RemoteStorage\Driver\DriverFactoryPool;
1213
use Magento\RemoteStorage\Driver\RemoteDriverInterface;
1314
use Magento\RemoteStorage\Setup\ConfigOptionsList;
14-
use Magento\RemoteStorage\Driver\DriverFactoryInterface;
1515
use PHPUnit\Framework\MockObject\MockObject;
1616
use PHPUnit\Framework\TestCase;
1717
use Psr\Log\LoggerInterface;
@@ -71,9 +71,9 @@ public function testValidate(array $input, bool $isDeploymentConfigExists, array
7171
->willReturn($isDeploymentConfigExists);
7272

7373
$isConnectionToBeTested = $isDeploymentConfigExists && isset(
74-
$input['remote-storage-region'],
75-
$input['remote-storage-bucket']
76-
);
74+
$input['remote-storage-region'],
75+
$input['remote-storage-bucket']
76+
);
7777

7878
if ($isConnectionToBeTested) {
7979
$driverFactoryMock = $this->getMockBuilder(DriverFactoryInterface::class)

0 commit comments

Comments
 (0)