Skip to content

Commit 970c3c8

Browse files
author
Oleksii Korshenko
committed
MAGETWO-62013: Fix class constructors in a backward compatible way - 2.1.3
1 parent 169bc89 commit 970c3c8

File tree

1 file changed

+4
-1
lines changed
  • dev/tests/integration/framework/Magento/TestFramework/Backend/App

1 file changed

+4
-1
lines changed

dev/tests/integration/framework/Magento/TestFramework/Backend/App/Config.php

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,10 @@ class Config extends \Magento\Backend\App\Config
2828
*/
2929
public function __construct(\Magento\TestFramework\App\Config $appConfig, \Magento\TestFramework\App\MutableScopeConfig $mutableScopeConfig)
3030
{
31-
parent::__construct($appConfig);
31+
parent::__construct(
32+
\Magento\TestFramework\ObjectManager::getInstance()->get(\Magento\Framework\App\Config\ScopePool::class),
33+
$appConfig
34+
);
3235
$this->mutableScopeConfig = $mutableScopeConfig;
3336
}
3437

0 commit comments

Comments
 (0)