Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/classes/Server/PrivilegesTest.php26
1 files changed, 0 insertions, 26 deletions
diff --git a/test/classes/Server/PrivilegesTest.php b/test/classes/Server/PrivilegesTest.php
index 2be7c19b12..ed28ee8093 100644
--- a/test/classes/Server/PrivilegesTest.php
+++ b/test/classes/Server/PrivilegesTest.php
@@ -319,32 +319,6 @@ class PrivilegesTest extends AbstractTestCase
}
/**
- * Test for getHtmlToChooseUserGroup
- */
- public function testGetHtmlToChooseUserGroup(): void
- {
- $username = 'pma_username';
-
- $html = $this->serverPrivileges->getHtmlToChooseUserGroup($username);
- $this->assertStringContainsString(
- '<form class="ajax" id="changeUserGroupForm"',
- $html
- );
- //Url::getHiddenInputs
- $params = ['username' => $username];
- $html_output = Url::getHiddenInputs($params);
- $this->assertStringContainsString(
- $html_output,
- $html
- );
- //__('User group')
- $this->assertStringContainsString(
- __('User group'),
- $html
- );
- }
-
- /**
* Test for getSqlQueryForDisplayPrivTable
*/
public function testGetSqlQueryForDisplayPrivTable(): void