Skip to content

Commit 9cc5cdd

Browse files
committed
MAGETWO-88409: Builds stabilization for PR
- codestyle fix
1 parent 8d81d0f commit 9cc5cdd

File tree

4 files changed

+7
-5
lines changed

4 files changed

+7
-5
lines changed

dev/tests/setup-integration/framework/Magento/TestFramework/Deploy/TestModuleManager.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
* See COPYING.txt for license details.
55
*/
66
namespace Magento\TestFramework\Deploy;
7+
78
use Magento\Framework\App\ObjectManager;
89
use Magento\Framework\Module\ModuleList;
910
use Magento\Framework\Module\ModuleListInterface;

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

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,8 @@ public function setUp()
4242

4343
/**
4444
* @expectedException \Magento\Framework\Setup\Exception
45-
* @expectedExceptionMessageRegExp /Primary key can`t be applied on table "test_table". All columns should be not nullable/
45+
* @expectedExceptionMessageRegExp
46+
* /Primary key can`t be applied on table "test_table". All columns should be not nullable/
4647
* @moduleName Magento_TestSetupDeclarationModule8
4748
*/
4849
public function testFailOnInvalidPrimaryKey()
@@ -62,7 +63,9 @@ public function testFailOnInvalidPrimaryKey()
6263

6364
/**
6465
* @expectedException \Magento\Framework\Setup\Exception
65-
* @expectedExceptionMessageRegExp /Column definition "page_id_on" and reference column definition "page_id" are different in tables "dependent" and "test_table"/
66+
* @expectedExceptionMessageRegExp
67+
* /Column definition "page_id_on" and reference column definition "page_id"
68+
* are different in tables "dependent" and "test_table"/
6669
* @moduleName Magento_TestSetupDeclarationModule8
6770
*/
6871
public function testFailOnIncosistentReferenceDefinition()
@@ -84,7 +87,7 @@ public function testFailOnIncosistentReferenceDefinition()
8487
* @expectedExceptionMessageRegExp /Auto Increment column do not have index. Column - "page_id"/
8588
* @moduleName Magento_TestSetupDeclarationModule8
8689
*/
87-
public function testFailOnInvalidAutoIncrementFiel()
90+
public function testFailOnInvalidAutoIncrementField()
8891
{
8992
$this->cliCommad->install(
9093
['Magento_TestSetupDeclarationModule8']

lib/internal/Magento/Framework/Setup/Declaration/Schema/Declaration/ValidationRules/IncosistentReferenceDefinition.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ class IncosistentReferenceDefinition implements ValidationInterface
2525
*/
2626
const ERROR_TYPE = 'reference_incosistence_definition';
2727

28-
2928
/**
3029
* Assert that column dimensions are the same
3130
*

lib/internal/Magento/Framework/Setup/Test/Unit/Declaration/Schema/Db/SchemaBuilderTest.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -473,6 +473,5 @@ private function prepareSchemaMocks(array $columns, array $references, array $co
473473
$index,
474474
$foreignKey
475475
);
476-
477476
}
478477
}

0 commit comments

Comments
 (0)