diff options
Diffstat (limited to 'tests/lib/Share20/ManagerTest.php')
-rw-r--r-- | tests/lib/Share20/ManagerTest.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/lib/Share20/ManagerTest.php b/tests/lib/Share20/ManagerTest.php index 58f96c418b8..a33740834f5 100644 --- a/tests/lib/Share20/ManagerTest.php +++ b/tests/lib/Share20/ManagerTest.php @@ -1086,7 +1086,7 @@ class ManagerTest extends \Test\TestCase { $this->expectException(\Exception::class); $this->expectExceptionMessage('Path is already shared with this user'); - $share = $this->manager->newShare(); + $share = $this->manager->newShare(); $share2 = $this->manager->newShare(); $sharedWith = $this->createMock(IUser::class); @@ -1111,7 +1111,7 @@ class ManagerTest extends \Test\TestCase { $this->expectException(\Exception::class); $this->expectExceptionMessage('Path is already shared with this user'); - $share = $this->manager->newShare(); + $share = $this->manager->newShare(); $sharedWith = $this->createMock(IUser::class); $sharedWith->method('getUID')->willReturn('sharedWith'); @@ -1149,7 +1149,7 @@ class ManagerTest extends \Test\TestCase { } public function testUserCreateChecksIdenticalPathSharedViaDeletedGroup() { - $share = $this->manager->newShare(); + $share = $this->manager->newShare(); $sharedWith = $this->createMock(IUser::class); $sharedWith->method('getUID')->willReturn('sharedWith'); |