summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorMarco Nassabain <marco.nassabain@hotmail.com>2021-03-01 12:33:17 +0100
committerSean Molenaar <SMillerDev@users.noreply.github.com>2021-04-08 22:31:21 +0200
commitf708e40b753c7017d9a5b6d1b38dc0eb5cd6ddf8 (patch)
treedc0eba4bbe6165a6e8f37ee342d4a50082d7e03d /tests
parentf6014567f33cfe046485c5ea0367caafd021a896 (diff)
✏️ Fix share test name typo
- testFindAllShared => testFindAllSharedWithUser Signed-off-by: Marco Nassabain <marco.nassabain@hotmail.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/Unit/Service/ItemServiceTest.php5
1 files changed, 2 insertions, 3 deletions
diff --git a/tests/Unit/Service/ItemServiceTest.php b/tests/Unit/Service/ItemServiceTest.php
index ff12a53f0..6c4658d5e 100644
--- a/tests/Unit/Service/ItemServiceTest.php
+++ b/tests/Unit/Service/ItemServiceTest.php
@@ -113,7 +113,7 @@ class ItemServiceTest extends TestCase
$result = $this->class->findAllInFolderAfter($this->user, 2, 20333, true);
$this->assertEquals([], $result);
}
-
+
public function testFindAllNewShared()
{
$this->mapper->expects($this->once())
@@ -185,8 +185,7 @@ class ItemServiceTest extends TestCase
$this->assertEquals(['val'], $result);
}
-
- public function testFindAllShared()
+ public function testFindAllSharedWithUser()
{
$this->mapper->expects($this->once())
->method('findAllSharedWithUser')