diff options
author | Lukas Reschke <lukas@owncloud.com> | 2015-06-17 12:11:09 +0200 |
---|---|---|
committer | Lukas Reschke <lukas@owncloud.com> | 2015-06-17 12:11:09 +0200 |
commit | 21d261885ddb0a55ef2146d490d0c72e8408733d (patch) | |
tree | 94da1ed6e68aa1b83ae07c73c6145fc7725aab71 /tests | |
parent | 70ca0102f581c49227b288dc87f87fc5d104e776 (diff) | |
download | nextcloud-server-21d261885ddb0a55ef2146d490d0c72e8408733d.tar.gz nextcloud-server-21d261885ddb0a55ef2146d490d0c72e8408733d.zip |
Fix test
Diffstat (limited to 'tests')
-rw-r--r-- | tests/core/avatar/avatarcontrollertest.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/core/avatar/avatarcontrollertest.php b/tests/core/avatar/avatarcontrollertest.php index c58d7febc3f..0a85fbb27f1 100644 --- a/tests/core/avatar/avatarcontrollertest.php +++ b/tests/core/avatar/avatarcontrollertest.php @@ -62,7 +62,7 @@ class AvatarControllerTest extends \Test\TestCase { $this->container['AppName'] = 'core'; $this->container['AvatarManager'] = $this->getMockBuilder('OCP\IAvatarManager') ->disableOriginalConstructor()->getMock(); - $this->container['Cache'] = $this->getMockBuilder('OCP\ICache') + $this->container['Cache'] = $this->getMockBuilder('OC\Cache\File') ->disableOriginalConstructor()->getMock(); $this->container['L10N'] = $this->getMockBuilder('OCP\IL10N') ->disableOriginalConstructor()->getMock(); |