From 4dfc839f870908155b0617624f968f4849eebb91 Mon Sep 17 00:00:00 2001 From: Côme Chilliet Date: Tue, 24 May 2022 13:02:07 +0200 Subject: Remove at() matcher for tests for files app MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Côme Chilliet --- apps/files/tests/Controller/ViewControllerTest.php | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'apps/files/tests/Controller/ViewControllerTest.php') diff --git a/apps/files/tests/Controller/ViewControllerTest.php b/apps/files/tests/Controller/ViewControllerTest.php index cebb50860d3..38f3670d4ca 100644 --- a/apps/files/tests/Controller/ViewControllerTest.php +++ b/apps/files/tests/Controller/ViewControllerTest.php @@ -442,11 +442,11 @@ class ViewControllerTest extends TestCase { ->with('testuser1') ->willReturn($baseFolder); - $baseFolder->expects($this->at(0)) + $baseFolder->expects($this->once()) ->method('getById') ->with(123) ->willReturn([$node]); - $baseFolder->expects($this->at(1)) + $baseFolder->expects($this->once()) ->method('getRelativePath') ->with('/testuser1/files/test/sub') ->willReturn('/test/sub'); @@ -482,11 +482,11 @@ class ViewControllerTest extends TestCase { ->method('getName') ->willReturn('somefile.txt'); - $baseFolder->expects($this->at(0)) + $baseFolder->expects($this->once()) ->method('getById') ->with(123) ->willReturn([$node]); - $baseFolder->expects($this->at(1)) + $baseFolder->expects($this->once()) ->method('getRelativePath') ->with('testuser1/files/test') ->willReturn('/test'); @@ -508,7 +508,7 @@ class ViewControllerTest extends TestCase { ->with('testuser1') ->willReturn($baseFolder); - $baseFolder->expects($this->at(0)) + $baseFolder->expects($this->once()) ->method('getById') ->with(123) ->willReturn([]); @@ -537,11 +537,11 @@ class ViewControllerTest extends TestCase { $baseFolderFiles = $this->getMockBuilder(Folder::class)->getMock(); $baseFolderTrash = $this->getMockBuilder(Folder::class)->getMock(); - $this->rootFolder->expects($this->at(0)) + $this->rootFolder->expects($this->once()) ->method('getUserFolder') ->with('testuser1') ->willReturn($baseFolderFiles); - $this->rootFolder->expects($this->at(1)) + $this->rootFolder->expects($this->once()) ->method('get') ->with('testuser1/files_trashbin/files/') ->willReturn($baseFolderTrash); @@ -559,11 +559,11 @@ class ViewControllerTest extends TestCase { ->method('getName') ->willReturn('somefile.txt'); - $baseFolderTrash->expects($this->at(0)) + $baseFolderTrash->expects($this->once()) ->method('getById') ->with(123) ->willReturn([$node]); - $baseFolderTrash->expects($this->at(1)) + $baseFolderTrash->expects($this->once()) ->method('getRelativePath') ->with('testuser1/files_trashbin/files/test.d1462861890/sub') ->willReturn('/test.d1462861890/sub'); -- cgit v1.2.3