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:
authorMaurício Meneghini Fauth <mauricio@fauth.dev>2022-06-10 06:26:29 +0300
committerMaurício Meneghini Fauth <mauricio@fauth.dev>2022-06-10 06:27:14 +0300
commit3412fb2c03c4d3fdac0b97ed8445340d99e77b48 (patch)
tree878a1fe03bcffa2c8837e150ab05ea9c2b0a5624 /test
parent2e52f362e8bc172e4eccba6115fdb6dee846a903 (diff)
Add ChangeLog entry for #17271
Fixes #17271 Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
Diffstat (limited to 'test')
-rw-r--r--test/classes/Controllers/Server/Status/Processes/RefreshControllerTest.php4
-rw-r--r--test/classes/Stubs/DbiDummy.php2
2 files changed, 3 insertions, 3 deletions
diff --git a/test/classes/Controllers/Server/Status/Processes/RefreshControllerTest.php b/test/classes/Controllers/Server/Status/Processes/RefreshControllerTest.php
index 8835e2deb0..f4ac71e9f9 100644
--- a/test/classes/Controllers/Server/Status/Processes/RefreshControllerTest.php
+++ b/test/classes/Controllers/Server/Status/Processes/RefreshControllerTest.php
@@ -46,7 +46,7 @@ class RefreshControllerTest extends AbstractTestCase
'User' => 'User1',
'Host' => 'Host1',
'Id' => 'Id1',
- 'db' => 'db1',
+ 'Db' => 'db1',
'Command' => 'Command1',
'Info' => 'Info1',
'State' => 'State1',
@@ -95,7 +95,7 @@ class RefreshControllerTest extends AbstractTestCase
//validate 4: $process['db']
$this->assertStringContainsString(
- __('None'),
+ $process['Db'],
$html
);
diff --git a/test/classes/Stubs/DbiDummy.php b/test/classes/Stubs/DbiDummy.php
index 726cd0b552..e33e553f40 100644
--- a/test/classes/Stubs/DbiDummy.php
+++ b/test/classes/Stubs/DbiDummy.php
@@ -2331,7 +2331,7 @@ class DbiDummy implements DbiExtension
'result' => [['Id1', 'User1', 'Host1', 'db1', 'Command1', 'Time1', 'State1', 'Info1']],
],
[
- 'query' => 'SELECT * FROM `INFORMATION_SCHEMA`.`PROCESSLIST` ORDER BY `db` ASC',
+ 'query' => 'SELECT * FROM `INFORMATION_SCHEMA`.`PROCESSLIST` ORDER BY `Db` ASC',
'columns' => ['Id', 'User', 'Host', 'db', 'Command', 'Time', 'State', 'Info'],
'result' => [['Id1', 'User1', 'Host1', 'db1', 'Command1', 'Time1', 'State1', 'Info1']],
],