Skip to content

Commit 62bdef5

Browse files
committed
MAGETWO-38686: Merge and Fix Builds
- fix integration tests
1 parent 7033a94 commit 62bdef5

File tree

1 file changed

+7
-1
lines changed
  • dev/tests/integration/testsuite/Magento/Framework/Composer

1 file changed

+7
-1
lines changed

dev/tests/integration/testsuite/Magento/Framework/Composer/RemoveTest.php

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,13 @@ class RemoveTest extends \PHPUnit_Framework_TestCase
1111
{
1212
public function testRemove()
1313
{
14-
$composerApp = $this->getMock('Composer\Console\Application', [], [], '', false);
14+
$composerApp = $this->getMock(
15+
'Composer\Console\Application',
16+
['setAutoExit', 'resetComposer', 'run'],
17+
[],
18+
'',
19+
false
20+
);
1521
$directoryList = $this->getMock('Magento\Framework\App\Filesystem\DirectoryList', [], [], '', false);
1622
$directoryList->expects($this->once())->method('getRoot');
1723
$directoryList->expects($this->once())

0 commit comments

Comments
 (0)