Fix getMock ManagerTest

This commit is contained in:
Roeland Jago Douma 2016-09-12 21:38:56 +02:00
parent 7bc2d178ca
commit 1d166d645b
No known key found for this signature in database
GPG Key ID: 1E152838F164D13B
1 changed files with 1 additions and 1 deletions

View File

@ -2413,7 +2413,7 @@ class ManagerTest extends \Test\TestCase {
$tomorrow->setTime(0,0,0);
$tomorrow->add(new \DateInterval('P1D'));
$file = $this->getMock('OCP\Files\File', [], [], 'File');
$file = $this->createMock(File::class);
$file->method('getId')->willReturn(100);
$share = $this->manager->newShare();