diff options
Diffstat (limited to '_test/tests/inc/remote.test.php')
-rw-r--r-- | _test/tests/inc/remote.test.php | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/_test/tests/inc/remote.test.php b/_test/tests/inc/remote.test.php index 57bec8762..7f1ec4aff 100644 --- a/_test/tests/inc/remote.test.php +++ b/_test/tests/inc/remote.test.php @@ -1,14 +1,10 @@ <?php -use dokuwiki\Extension\AuthPlugin; +use dokuwiki\test\mock\AuthPlugin; use dokuwiki\Extension\RemotePlugin; use dokuwiki\Remote\Api; use dokuwiki\Remote\RemoteException; -class remote_test_MockAuthCase extends AuthPlugin { - function isCaseSensitive() { return true; } -} - class RemoteAPICoreTest { function __getRemoteInfo() { @@ -169,7 +165,7 @@ class remote_test extends DokuWikiTest { $this->userinfo = $USERINFO; $this->remote = new Api(); - $auth = new remote_test_MockAuthCase(); + $auth = new AuthPlugin(); } function tearDown() { |