Skip to content

Commit f947562

Browse files
author
Oleksii Korshenko
committed
MAGETWO-64065: [GitHub] [PR] Merge Pull Request #8151 : Remove "<2.7" constraint on symfony/console
- updated symfony dependencies to exclude problematic version 2.7.0
1 parent e6192ff commit f947562

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,12 +43,12 @@
4343
"tubalmartin/cssmin": "2.4.8-p4",
4444
"magento/magento-composer-installer": ">=0.1.11",
4545
"braintree/braintree_php": "3.7.0",
46-
"symfony/console": "~2.3",
46+
"symfony/console": "~2.3, !=2.7.0",
4747
"symfony/event-dispatcher": "~2.1",
4848
"symfony/process": "~2.1",
4949
"phpseclib/phpseclib": "2.0.*",
5050
"tedivm/jshrink": "~1.0.1",
51-
"magento/composer": "~1.0.0",
51+
"magento/composer": "~1.1.0",
5252
"lib-libxml": "*",
5353
"ext-ctype": "*",
5454
"ext-gd": "*",

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,14 +33,14 @@ public function testExecute()
3333
$this->fixtureModel->expects($this->once())->method('loadConfig')->with('path_to_profile.xml');
3434
$this->fixtureModel->expects($this->once())->method('initObjectManager');
3535
$this->fixtureModel->expects($this->once())->method('loadFixtures');
36-
36+
3737
$commandTester = new CommandTester($this->command);
3838
$commandTester->execute(['profile' => 'path_to_profile.xml']);
3939
}
4040

4141
/**
4242
* @expectedException \RuntimeException
43-
* @expectedExceptionMessage Not enough arguments.
43+
* @expectedExceptionMessage Not enough arguments
4444
*/
4545
public function testExecuteInvalidLanguageArgument()
4646
{

0 commit comments

Comments
 (0)