summaryrefslogtreecommitdiffstats
path: root/tests/lib/Security
diff options
context:
space:
mode:
authorRoeland Jago Douma <roeland@famdouma.nl>2018-05-08 20:59:31 +0200
committerRoeland Jago Douma <roeland@famdouma.nl>2018-05-14 13:30:22 +0200
commit362e6b29038ae43d65114062c254774bc3b64803 (patch)
treee6024448bd9f7ff948af3d461d043a18b705d003 /tests/lib/Security
parent3e07c4f73a80bfa7e5de5a9e0074d2c7d35f18cc (diff)
downloadnextcloud-server-362e6b29038ae43d65114062c254774bc3b64803.tar.gz
nextcloud-server-362e6b29038ae43d65114062c254774bc3b64803.zip
Fix tests
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to 'tests/lib/Security')
-rw-r--r--tests/lib/Security/IdentityProof/ManagerTest.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/lib/Security/IdentityProof/ManagerTest.php b/tests/lib/Security/IdentityProof/ManagerTest.php
index 290e7be5c94..9d17182e52e 100644
--- a/tests/lib/Security/IdentityProof/ManagerTest.php
+++ b/tests/lib/Security/IdentityProof/ManagerTest.php
@@ -21,6 +21,7 @@
namespace Test\Security\IdentityProof;
+use OC\Files\AppData\AppData;
use OC\Files\AppData\Factory;
use OC\Security\IdentityProof\Key;
use OC\Security\IdentityProof\Manager;
@@ -50,7 +51,7 @@ class ManagerTest extends TestCase {
/** @var Factory|\PHPUnit_Framework_MockObject_MockObject $factory */
$this->factory = $this->createMock(Factory::class);
- $this->appData = $this->createMock(IAppData::class);
+ $this->appData = $this->createMock(AppData::class);
$this->config = $this->createMock(IConfig::class);
$this->factory->expects($this->any())
->method('get')