summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/Unit/Controller/FolderApiV2ControllerTest.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/Unit/Controller/FolderApiV2ControllerTest.php b/tests/Unit/Controller/FolderApiV2ControllerTest.php
index d91a32bea..31f370d12 100644
--- a/tests/Unit/Controller/FolderApiV2ControllerTest.php
+++ b/tests/Unit/Controller/FolderApiV2ControllerTest.php
@@ -182,9 +182,9 @@ class FolderApiV2ControllerTest extends TestCase
$this->folderService->expects($this->once())
->method('rename')
->with(
- $this->equalTo($this->user->getUID(),
+ $this->equalTo($this->user->getUID()),
$this->equalTo($folderId),
- $this->equalTo($folderName))
+ $this->equalTo($folderName)
);
$this->folderAPI->updateFolder($folderId, $folderName);