Skip to content

Commit 49c6fa0

Browse files
committed
Update dependencies
- added leading slashes
1 parent 70b9f60 commit 49c6fa0

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

tests/Composer/ConsoleArrayInputFactoryTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,6 @@ protected function setUp()
2121

2222
public function testCreate()
2323
{
24-
$this->assertInstanceOf(Symfony\Component\Console\Input\ArrayInput::class, $this->factory->create([]));
24+
$this->assertInstanceOf(\Symfony\Component\Console\Input\ArrayInput::class, $this->factory->create([]));
2525
}
2626
}

tests/Composer/InfoCommandTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ class InfoCommandTest extends \PHPUnit\Framework\TestCase
3333

3434
protected function setUp()
3535
{
36-
$this->application = $this->createMock(Magento\Composer\MagentoComposerApplication::class);
36+
$this->application = $this->createMock(\Magento\Composer\MagentoComposerApplication::class);
3737

3838
$this->infoCommand = new InfoCommand($this->application);
3939
}

tests/Composer/MagentoComposerApplicationTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,9 @@ class MagentoComposerApplicationTest extends \PHPUnit\Framework\TestCase
3333

3434
protected function setUp()
3535
{
36-
$this->composerApplication = $this->createMock(Composer\Console\Application::class);
37-
$this->inputFactory = $this->createMock(Magento\Composer\ConsoleArrayInputFactory::class);
38-
$this->consoleOutput = $this->createMock(Symfony\Component\Console\Output\BufferedOutput::class);
36+
$this->composerApplication = $this->createMock(\Composer\Console\Application::class);
37+
$this->inputFactory = $this->createMock(\Magento\Composer\ConsoleArrayInputFactory::class);
38+
$this->consoleOutput = $this->createMock(\Symfony\Component\Console\Output\BufferedOutput::class);
3939

4040
$this->application = new MagentoComposerApplication(
4141
'path1',

tests/Composer/RequireUpdateDryRunCommandTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,8 @@ class RequireUpdateDryRunCommandTest extends \PHPUnit\Framework\TestCase
6464

6565
protected function setUp()
6666
{
67-
$this->application = $this->createMock(Magento\Composer\MagentoComposerApplication::class);
68-
$this->infoCommand = $this->createMock(Magento\Composer\InfoCommand::class);
67+
$this->application = $this->createMock(\Magento\Composer\MagentoComposerApplication::class);
68+
$this->infoCommand = $this->createMock(\Magento\Composer\InfoCommand::class);
6969

7070
$this->requireUpdateDryRunCommand = new RequireUpdateDryRunCommand(
7171
$this->application,

0 commit comments

Comments
 (0)