diff options
Diffstat (limited to '_test/tests')
-rw-r--r-- | _test/tests/inc/auth_aclcheck.test.php | 2 | ||||
-rw-r--r-- | _test/tests/inc/auth_admincheck.test.php | 4 | ||||
-rw-r--r-- | _test/tests/inc/remote.test.php | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/_test/tests/inc/auth_aclcheck.test.php b/_test/tests/inc/auth_aclcheck.test.php index 8e5a04ff5..b128b7871 100644 --- a/_test/tests/inc/auth_aclcheck.test.php +++ b/_test/tests/inc/auth_aclcheck.test.php @@ -9,7 +9,7 @@ class auth_acl_test extends DokuWikiTest { global $AUTH_ACL; global $auth; $this->oldAuthAcl = $AUTH_ACL; - $auth = new auth_basic(); + $auth = new DokuWiki_Auth_Plugin(); } function tearDown() { diff --git a/_test/tests/inc/auth_admincheck.test.php b/_test/tests/inc/auth_admincheck.test.php index 17424a08e..087be3810 100644 --- a/_test/tests/inc/auth_admincheck.test.php +++ b/_test/tests/inc/auth_admincheck.test.php @@ -1,6 +1,6 @@ <?php -class auth_admin_test_AuthInSensitive extends auth_basic { +class auth_admin_test_AuthInSensitive extends DokuWiki_Auth_Plugin { function isCaseSensitive(){ return false; } @@ -18,7 +18,7 @@ class auth_admin_test extends DokuWikiTest { function setSensitive() { global $auth; - $auth = new auth_basic(); + $auth = new DokuWiki_Auth_Plugin(); } function setInSensitive() { diff --git a/_test/tests/inc/remote.test.php b/_test/tests/inc/remote.test.php index 611e1ab0f..d0d4eb7ce 100644 --- a/_test/tests/inc/remote.test.php +++ b/_test/tests/inc/remote.test.php @@ -1,6 +1,6 @@ <?php -class MockAuth extends auth_basic { +class MockAuth extends DokuWiki_Auth_Plugin { function isCaseSensitive() { return true; } } |