summaryrefslogtreecommitdiff
path: root/_test/tests/inc/template_include_page.test.php
diff options
context:
space:
mode:
Diffstat (limited to '_test/tests/inc/template_include_page.test.php')
-rw-r--r--_test/tests/inc/template_include_page.test.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/_test/tests/inc/template_include_page.test.php b/_test/tests/inc/template_include_page.test.php
index 580221979..7dd13ba23 100644
--- a/_test/tests/inc/template_include_page.test.php
+++ b/_test/tests/inc/template_include_page.test.php
@@ -34,17 +34,17 @@ class template_pagetitle_test extends DokuWikiTest {
function test_adminPluginTitle() {
global $ID,$ACT,$INPUT,$conf;
- if (!plugin_load('admin','config')) {
- $this->markTestSkipped('Plugin Config not found, unable to test admin plugin titles');
+ if (!plugin_load('admin','revert')) {
+ $this->markTestSkipped('Revert plugin not found, unable to test admin plugin titles');
return;
}
$ID = 'foo:bar';
$ACT = 'admin';
$conf['lang'] = 'en';
- $INPUT->set('page','config');
+ $INPUT->set('page','revert');
- $this->assertEquals('Configuration Settings', tpl_pagetitle(null, true));
+ $this->assertEquals('Revert Manager', tpl_pagetitle(null, true));
}
function test_nonPageFunctionTitle() {