summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorPaul Tirk <paultirk@paultirk.com>2021-01-09 17:35:37 +0000
committerSean Molenaar <SMillerDev@users.noreply.github.com>2021-04-08 10:23:11 +0200
commitcce826fc72c313835a2271ece59c365c33fe38ee (patch)
tree627d8c6349a4cb8bcf5948316c98380008ed8b52 /tests
parent323f215e3a09799685fdcbbe6502d45bab2d43f2 (diff)
fix wrong parentheses
Signed-off-by: Paul Tirk <paultirk@paultirk.com>
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);