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
diff options
context:
space:
mode:
authorMaurício Meneghini Fauth <mauricio@fauth.dev>2019-08-07 22:08:46 +0300
committerMaurício Meneghini Fauth <mauricio@fauth.dev>2019-08-07 22:08:46 +0300
commit616cc8d901b61571d9c7da4bb9ac96f101eae3ed (patch)
treed561b3e17de0525b7d3cfb5131da3267c45fa6e9 /test/classes/Navigation
parent74f8246fd52b3da809500e1a3fabbe4b4f897b44 (diff)
Use the router for the triggers page
Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
Diffstat (limited to 'test/classes/Navigation')
-rw-r--r--test/classes/Navigation/Nodes/NodeTriggerContainerTest.php2
-rw-r--r--test/classes/Navigation/Nodes/NodeTriggerTest.php2
2 files changed, 2 insertions, 2 deletions
diff --git a/test/classes/Navigation/Nodes/NodeTriggerContainerTest.php b/test/classes/Navigation/Nodes/NodeTriggerContainerTest.php
index f0df908ce4..11867b7edc 100644
--- a/test/classes/Navigation/Nodes/NodeTriggerContainerTest.php
+++ b/test/classes/Navigation/Nodes/NodeTriggerContainerTest.php
@@ -44,7 +44,7 @@ class NodeTriggerContainerTest extends PmaTestCase
$parent->links
);
$this->assertStringContainsString(
- 'db_triggers.php',
+ 'index.php?route=/database/triggers',
$parent->links['text']
);
$this->assertEquals('triggers', $parent->realName);
diff --git a/test/classes/Navigation/Nodes/NodeTriggerTest.php b/test/classes/Navigation/Nodes/NodeTriggerTest.php
index d9c1375b9a..4b578a1616 100644
--- a/test/classes/Navigation/Nodes/NodeTriggerTest.php
+++ b/test/classes/Navigation/Nodes/NodeTriggerTest.php
@@ -44,7 +44,7 @@ class NodeTriggerTest extends PmaTestCase
$parent->links
);
$this->assertStringContainsString(
- 'db_triggers.php',
+ 'index.php?route=/database/triggers',
$parent->links['text']
);
}