Fix getMock Repair

This commit is contained in:
Roeland Jago Douma 2016-09-07 20:18:58 +02:00
parent 1b5ed67857
commit dc60f4c441
No known key found for this signature in database
GPG Key ID: 1E152838F164D13B
1 changed files with 2 additions and 1 deletions

View File

@ -9,6 +9,7 @@
namespace Test\Repair;
use OC\Repair\SharePropagation;
use OCP\IConfig;
use OCP\Migration\IOutput;
class RepairSharePropagationTest extends \Test\TestCase {
@ -27,7 +28,7 @@ class RepairSharePropagationTest extends \Test\TestCase {
*/
public function testRemovePropagationEntries(array $startKeys, array $expectedRemovedKeys) {
/** @var \PHPUnit_Framework_MockObject_MockObject|\OCP\IConfig $config */
$config = $this->getMock('\OCP\IConfig');
$config = $this->createMock(IConfig::class);
$config->expects($this->once())
->method('getAppKeys')
->with('files_sharing')