Skip to content

Commit c1da0ea

Browse files
author
Dale Sikkema
committed
Merge branch 'MAGETWO-37504-st-compiler' into develop
2 parents c6fe304 + b608f4d commit c1da0ea

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

setup/src/Magento/Setup/Test/Unit/Console/Command/DiCompileCommandTest.php

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,10 +48,14 @@ public function setUp()
4848
->disableOriginalConstructor()
4949
->getMock();
5050

51-
$objectManagerProvider->expects($this->once())->method('get')->willReturn($this->objectManager);
51+
$objectManagerProvider->expects($this->once())
52+
->method('get')
53+
->willReturn($this->objectManager);
5254
$this->manager = $this->getMock('Magento\Setup\Module\Di\App\Task\Manager', [], [], '', false);
5355
$directoryList = $this->getMock('Magento\Framework\App\Filesystem\DirectoryList', [], [], '', false);
54-
$this->filesystem = $this->getMockBuilder('Magento\Framework\Filesystem')->disableOriginalConstructor()->getMock();
56+
$this->filesystem = $this->getMockBuilder('Magento\Framework\Filesystem')
57+
->disableOriginalConstructor()
58+
->getMock();
5559

5660
$directoryList->expects($this->exactly(3))->method('getPath');
5761
$this->command = new DiCompileCommand(

0 commit comments

Comments
 (0)