Skip to content

Commit e19d350

Browse files
MAGETWO-64554: Rename config.local.php file, use env.php file as configs storage
1 parent 481ed85 commit e19d350

File tree

1 file changed

+0
-5
lines changed
  • lib/internal/Magento/Framework/App/Test/Unit/DeploymentConfig

1 file changed

+0
-5
lines changed

lib/internal/Magento/Framework/App/Test/Unit/DeploymentConfig/ReaderTest.php

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -61,10 +61,6 @@ protected function setUp()
6161
->expects($this->any())
6262
->method('getPaths')
6363
->willReturn(['configKeyOne' => 'config.php', 'configKeyTwo' => 'env.php']);
64-
$this->configFilePool
65-
->expects($this->any())
66-
->method('getInitialFilePools')
67-
->willReturn([]);
6864
}
6965

7066
public function testGetFile()
@@ -107,7 +103,6 @@ public function testCustomLoad($file, $expected)
107103
$configFilePool = $this->getMock(\Magento\Framework\Config\File\ConfigFilePool::class, [], [], '', false);
108104
$configFilePool->expects($this->any())->method('getPaths')->willReturn([$file]);
109105
$configFilePool->expects($this->any())->method('getPath')->willReturn($file);
110-
$configFilePool->expects($this->any())->method('getInitialFilePools')->willReturn([]);
111106
$object = new Reader($this->dirList, $this->driverPool, $configFilePool, $file);
112107
$this->assertSame($expected, $object->load($file));
113108
}

0 commit comments

Comments
 (0)