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>2021-05-14 22:20:46 +0300
committerMaurício Meneghini Fauth <mauricio@fauth.dev>2021-05-14 22:20:46 +0300
commit68b96b8b1020dba6106836e1ac96f037cc8b56c5 (patch)
tree1641898a6bebec087d6468bacce4497c96010a89 /test
parent0cd6cbee136440742a7dc7444e86ce88ba923184 (diff)
Remove some .pma-table CSS classes
Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
Diffstat (limited to 'test')
-rw-r--r--test/classes/Controllers/Server/BinlogControllerTest.php2
-rw-r--r--test/classes/ReplicationGuiTest.php20
2 files changed, 5 insertions, 17 deletions
diff --git a/test/classes/Controllers/Server/BinlogControllerTest.php b/test/classes/Controllers/Server/BinlogControllerTest.php
index 84e9a86a89..9833b314cd 100644
--- a/test/classes/Controllers/Server/BinlogControllerTest.php
+++ b/test/classes/Controllers/Server/BinlogControllerTest.php
@@ -71,7 +71,7 @@ class BinlogControllerTest extends AbstractTestCase
);
$this->assertStringContainsString(
- '<table class="pma-table" id="binlogTable">',
+ '<table class="table table-light table-striped table-hover align-middle" id="binlogTable">',
$actual
);
diff --git a/test/classes/ReplicationGuiTest.php b/test/classes/ReplicationGuiTest.php
index a979531eae..f8f0d9ea8e 100644
--- a/test/classes/ReplicationGuiTest.php
+++ b/test/classes/ReplicationGuiTest.php
@@ -104,22 +104,10 @@ class ReplicationGuiTest extends AbstractTestCase
$html
);
//slave host
- $this->assertStringContainsString(
- '<td class="value">Server_id1</td>',
- $html
- );
- $this->assertStringContainsString(
- '<td class="value">Server_id2</td>',
- $html
- );
- $this->assertStringContainsString(
- '<td class="value">Host1</td>',
- $html
- );
- $this->assertStringContainsString(
- '<td class="value">Host2</td>',
- $html
- );
+ $this->assertStringContainsString('<td class="text-end font-monospace">Server_id1</td>', $html);
+ $this->assertStringContainsString('<td class="text-end font-monospace">Server_id2</td>', $html);
+ $this->assertStringContainsString('<td class="text-end font-monospace">Host1</td>', $html);
+ $this->assertStringContainsString('<td class="text-end font-monospace">Host2</td>', $html);
//Notice
$this->assertStringContainsString(
'Only slaves started with the',