Skip to content

Commit 61719bd

Browse files
committed
MAGETWO-88409: Builds stabilization for PR
1 parent 6e7eb94 commit 61719bd

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

dev/tests/setup-integration/_files/Magento/TestSetupDeclarationModule4/fixture/safe_data_provider.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,22 +5,22 @@
55
*/
66
return [
77
[
8-
'page_id' => 1,
8+
'page_id' => '1',
99
'email' => '1@gmail.com',
1010
'title' => 'Title1'
1111
],
1212
[
13-
'page_id' => 2,
13+
'page_id' => '2',
1414
'email' => '2@gmail.com',
1515
'title' => 'Title2'
1616
],
1717
[
18-
'page_id' => 3,
18+
'page_id' => '3',
1919
'email' => '3@gmail.com',
2020
'title' => 'Title3'
2121
],
2222
[
23-
'page_id' => 4,
23+
'page_id' => '4',
2424
'email' => '4@gmail.com',
2525
'title' => 'Title4'
2626
]

dev/tests/setup-integration/testsuite/Magento/Setup/SafeInstallerTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ public function testInstallation()
6969
);
7070
$this->cliCommad->upgrade(
7171
[
72-
'--safe-mode' => true,
72+
'safe-mode' => '',
7373
]
7474
);
7575
//Move new db_schema.xml with restored title field
@@ -81,7 +81,7 @@ public function testInstallation()
8181
);
8282
$this->cliCommad->upgrade(
8383
[
84-
'--data-restore' => true,
84+
'data-restore' => '',
8585
]
8686
);
8787
$testTableSelect = $adapter->select()->from($testTableName);

setup/src/Magento/Setup/Console/Command/InstallCommand.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ class InstallCommand extends AbstractSetupCommand
4848
const INPUT_KEY_ENABLE_MODULES = 'enable_modules';
4949

5050
/**
51+
* List of comma-separated module names. That must be avoided during installation.
5152
* List of comma-separated module names. That must be avoided during installation.
5253
* Avaiable magic param all.
5354
*/

0 commit comments

Comments
 (0)