Skip to content

Commit 4c236e7

Browse files
committed
ENGCOM-3243: Fixed static test.
1 parent f7b6d5b commit 4c236e7

File tree

4 files changed

+5
-3
lines changed

4 files changed

+5
-3
lines changed

dev/tests/integration/testsuite/Magento/Framework/Interception/AbstractPlugin.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,8 @@ public function tearDown()
5656

5757
/**
5858
* Set up Interception Config
59+
*
60+
* @param array $pluginConfig
5961
*/
6062
public function setUpInterceptionConfig($pluginConfig)
6163
{

dev/tests/integration/testsuite/Magento/Framework/Interception/Config/CacheManagerTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ protected function setUp()
4040

4141
$this->serializer = $this->objectManager->get(\Magento\Framework\Serialize\SerializerInterface::class);
4242
$this->cache = $this->objectManager->get(\Magento\Framework\App\CacheInterface::class);
43-
$this->configWriter =
43+
$this->configWriter =
4444
$this->objectManager->get(\Magento\Framework\App\ObjectManager\ConfigWriter\Filesystem::class);
4545

4646
$this->initializeMetadataDirectory();

lib/internal/Magento/Framework/Interception/Config/Config.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ public function __construct(
113113
$this->_cacheId = $cacheId;
114114
$this->_reader = $reader;
115115
$this->_scopeList = $scopeList;
116-
$this->cacheManager =
116+
$this->cacheManager =
117117
$cacheManager ?? \Magento\Framework\App\ObjectManager::getInstance()->get(CacheManager::class);
118118
$intercepted = $this->cacheManager->load($cacheId);
119119
if ($intercepted !== null) {

setup/src/Magento/Setup/Test/Unit/Module/Di/App/Task/AreaTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ protected function setUp()
4848
$this->configReaderMock = $this->getMockBuilder(\Magento\Setup\Module\Di\Compiler\Config\Reader::class)
4949
->disableOriginalConstructor()
5050
->getMock();
51-
$this->configWriterMock =
51+
$this->configWriterMock =
5252
$this->getMockBuilder(\Magento\Framework\App\ObjectManager\ConfigWriterInterface::class)
5353
->disableOriginalConstructor()
5454
->getMock();

0 commit comments

Comments
 (0)