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:
authorWilliam Desportes <williamdes@wdes.fr>2020-11-13 01:27:57 +0300
committerWilliam Desportes <williamdes@wdes.fr>2020-11-13 01:27:57 +0300
commitbc45a05dcd7f06a50fa7b040e0c588b7a68d2dd4 (patch)
tree81a820e2ba1ba89806adee1094bea157d40479e4 /test
parentce0d95cd69962170af85712b0c4672281d940814 (diff)
Typo fixes in the JS codebase with VS code "code spell checker"
And coding standard issues from pull-request #16364 Signed-off-by: William Desportes <williamdes@wdes.fr>
Diffstat (limited to 'test')
-rw-r--r--test/classes/Display/ResultsTest.php2
-rw-r--r--test/selenium/TestBase.php2
2 files changed, 2 insertions, 2 deletions
diff --git a/test/classes/Display/ResultsTest.php b/test/classes/Display/ResultsTest.php
index 26aea41bf3..43e48a51f2 100644
--- a/test/classes/Display/ResultsTest.php
+++ b/test/classes/Display/ResultsTest.php
@@ -10,8 +10,8 @@ namespace PhpMyAdmin\Tests\Display;
use PhpMyAdmin\Core;
use PhpMyAdmin\DatabaseInterface;
use PhpMyAdmin\Display\Results as DisplayResults;
-use PhpMyAdmin\Plugins\Transformations\Text_Plain_Link;
use PhpMyAdmin\Plugins\Transformations\Output\Text_Plain_External;
+use PhpMyAdmin\Plugins\Transformations\Text_Plain_Link;
use PhpMyAdmin\SqlParser\Parser;
use PhpMyAdmin\SqlParser\Utils\Query;
use PhpMyAdmin\Tests\AbstractTestCase;
diff --git a/test/selenium/TestBase.php b/test/selenium/TestBase.php
index ea61bbb689..adeb65ce35 100644
--- a/test/selenium/TestBase.php
+++ b/test/selenium/TestBase.php
@@ -472,7 +472,7 @@ abstract class TestBase extends TestCase
$this->selectByLabel($this->byId('sel-lang'), 'English');
}
- // Clear the input for Microsoft Edge (remebers the username)
+ // Clear the input for Microsoft Edge (remembers the username)
$this->waitForElement('id', 'input_username')->clear()->click()->sendKeys($username);
$this->byId('input_password')->click()->sendKeys($password);
$this->byId('input_go')->click();