Skip to content

Commit d2a15df

Browse files
author
Michael Logvin
committed
MAGETWO-34646: Magento is compatible with MySql Cluster
1 parent ceca70e commit d2a15df

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

lib/internal/Magento/Framework/Config/Test/Unit/ConfigOptionsListTest.php

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -48,14 +48,16 @@ public function testGetOptions()
4848
$this->assertInstanceOf('Magento\Framework\Setup\Option\TextConfigOption', $options[5]);
4949
$this->assertSame('Database server username', $options[5]->getDescription());
5050
$this->assertInstanceOf('Magento\Framework\Setup\Option\TextConfigOption', $options[6]);
51-
$this->assertSame('Database server password', $options[6]->getDescription());
51+
$this->assertSame('Database server engine', $options[6]->getDescription());
5252
$this->assertInstanceOf('Magento\Framework\Setup\Option\TextConfigOption', $options[7]);
53-
$this->assertSame('Database table prefix', $options[7]->getDescription());
53+
$this->assertSame('Database server password', $options[7]->getDescription());
5454
$this->assertInstanceOf('Magento\Framework\Setup\Option\TextConfigOption', $options[8]);
55-
$this->assertSame('Database type', $options[8]->getDescription());
55+
$this->assertSame('Database table prefix', $options[8]->getDescription());
5656
$this->assertInstanceOf('Magento\Framework\Setup\Option\TextConfigOption', $options[9]);
57-
$this->assertSame('Database initial set of commands', $options[9]->getDescription());
58-
$this->assertEquals(10, count($options));
57+
$this->assertSame('Database type', $options[9]->getDescription());
58+
$this->assertInstanceOf('Magento\Framework\Setup\Option\TextConfigOption', $options[10]);
59+
$this->assertSame('Database initial set of commands', $options[10]->getDescription());
60+
$this->assertEquals(11, count($options));
5961
}
6062

6163
public function testCreateOptions()

0 commit comments

Comments
 (0)