diff options
Diffstat (limited to 'apps/files/tests/Controller/ViewControllerTest.php')
-rw-r--r-- | apps/files/tests/Controller/ViewControllerTest.php | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/apps/files/tests/Controller/ViewControllerTest.php b/apps/files/tests/Controller/ViewControllerTest.php index 0b71011f60c..2714a6b25c0 100644 --- a/apps/files/tests/Controller/ViewControllerTest.php +++ b/apps/files/tests/Controller/ViewControllerTest.php @@ -167,7 +167,7 @@ class ViewControllerTest extends TestCase { [$this->user->getUID(), 'files', 'crop_image_previews', true, true], [$this->user->getUID(), 'files', 'show_grid', true], ]); - + $baseFolderFiles = $this->getMockBuilder(Folder::class)->getMock(); $this->rootFolder->expects($this->any()) @@ -228,9 +228,9 @@ class ViewControllerTest extends TestCase { ->willReturn($baseFolderTrash); $baseFolderFiles->expects($this->any()) - ->method('getById') + ->method('getFirstNodeById') ->with(123) - ->willReturn([]); + ->willReturn(null); $node = $this->getMockBuilder(File::class)->getMock(); $node->expects($this->once()) @@ -238,9 +238,9 @@ class ViewControllerTest extends TestCase { ->willReturn($parentNode); $baseFolderTrash->expects($this->once()) - ->method('getById') + ->method('getFirstNodeById') ->with(123) - ->willReturn([$node]); + ->willReturn($node); $baseFolderTrash->expects($this->once()) ->method('getRelativePath') ->with('testuser1/files_trashbin/files/test.d1462861890/sub') |