Fix PhpMyAdmin\Tests\Selenium\Table\CreateTest failing test

Related to f911458b71.

Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
This commit is contained in:
Maurício Meneghini Fauth 2022-02-11 15:14:22 -03:00
parent 1b055dba90
commit bb00f429f2
No known key found for this signature in database
GPG Key ID: 6A16FD38AFC89CC8

View File

@ -65,7 +65,7 @@ class CreateTest extends TestBase
$column_dropdown_details = [
'field_0_6' => 'UNSIGNED',
'field_1_2' => 'VARCHAR',
'field_1_5' => 'utf8_general_ci',
'field_1_5' => 'utf8mb4_general_ci',
'field_1_4' => 'As defined:',
];
@ -83,7 +83,7 @@ class CreateTest extends TestBase
$this->moveto($ele);
// post
$ele->click();
$this->waitForElement('cssSelector', 'li.last.table');
$this->waitForElement('cssSelector', 'li.last.nav_node_table');
$this->waitAjax();
@ -162,7 +162,7 @@ class CreateTest extends TestBase
);
$this->assertEquals(
'utf8_general_ci',
'utf8mb4_general_ci',
$this->getCellByTableId('tablestructure', 2, 5)
);