diff options
author | Roeland Jago Douma <roeland@famdouma.nl> | 2016-09-02 10:29:05 +0200 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2016-09-06 09:29:27 +0200 |
commit | 0c154c1ed779ccd68ea67e3528fad36ad6ac9b34 (patch) | |
tree | 05a9f0d94c8730ed6de352b91a8db72c72ca957f /apps/encryption/tests/Crypto/EncryptAllTest.php | |
parent | 831179971cf2d693cc09e4a216387d107567a47e (diff) | |
download | nextcloud-server-0c154c1ed779ccd68ea67e3528fad36ad6ac9b34.tar.gz nextcloud-server-0c154c1ed779ccd68ea67e3528fad36ad6ac9b34.zip |
Fix getMock encryption
Diffstat (limited to 'apps/encryption/tests/Crypto/EncryptAllTest.php')
-rw-r--r-- | apps/encryption/tests/Crypto/EncryptAllTest.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/encryption/tests/Crypto/EncryptAllTest.php b/apps/encryption/tests/Crypto/EncryptAllTest.php index 8232af5f9f2..6c279a54f57 100644 --- a/apps/encryption/tests/Crypto/EncryptAllTest.php +++ b/apps/encryption/tests/Crypto/EncryptAllTest.php @@ -26,6 +26,7 @@ namespace OCA\Encryption\Tests\Crypto; use OCA\Encryption\Crypto\EncryptAll; +use Symfony\Component\Console\Formatter\OutputFormatterInterface; use Test\TestCase; class EncryptAllTest extends TestCase { @@ -101,7 +102,7 @@ class EncryptAllTest extends TestCase { $this->outputInterface->expects($this->any())->method('getFormatter') - ->willReturn($this->getMock('\Symfony\Component\Console\Formatter\OutputFormatterInterface')); + ->willReturn($this->createMock(OutputFormatterInterface::class)); $this->userManager->expects($this->any())->method('getBackends')->willReturn([$this->userInterface]); $this->userInterface->expects($this->any())->method('getUsers')->willReturn(['user1', 'user2']); |