From 3412fb2c03c4d3fdac0b97ed8445340d99e77b48 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maur=C3=ADcio=20Meneghini=20Fauth?= Date: Fri, 10 Jun 2022 00:26:29 -0300 Subject: Add ChangeLog entry for #17271 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixes #17271 Signed-off-by: MaurĂ­cio Meneghini Fauth --- .../Controllers/Server/Status/Processes/RefreshControllerTest.php | 4 ++-- test/classes/Stubs/DbiDummy.php | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'test') 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']], ], -- cgit v1.2.3