summaryrefslogtreecommitdiffstats
path: root/tests/Unit/Db/ItemMapperAfterTest.php
diff options
context:
space:
mode:
authorMarco Nassabain <marco.nassabain@hotmail.com>2021-03-19 18:13:13 +0100
committerSean Molenaar <SMillerDev@users.noreply.github.com>2021-04-08 22:31:21 +0200
commitbbdd95c30d545cc7dd9719836a94c7b21b381c68 (patch)
tree5ce0a0d8dacf98e9e13f9582cfc6299eeee56741 /tests/Unit/Db/ItemMapperAfterTest.php
parent7f21574615f0ed9d5e2fa218f3ed018600b58a42 (diff)
🔥 Remove UserManager code from ItemMapper & tests
Signed-off-by: Marco Nassabain <marco.nassabain@hotmail.com>
Diffstat (limited to 'tests/Unit/Db/ItemMapperAfterTest.php')
-rw-r--r--tests/Unit/Db/ItemMapperAfterTest.php4
1 files changed, 0 insertions, 4 deletions
diff --git a/tests/Unit/Db/ItemMapperAfterTest.php b/tests/Unit/Db/ItemMapperAfterTest.php
index 6e33465ba..eccebbcf5 100644
--- a/tests/Unit/Db/ItemMapperAfterTest.php
+++ b/tests/Unit/Db/ItemMapperAfterTest.php
@@ -28,8 +28,6 @@ class ItemMapperAfterTest extends MapperTestUtility
/** @var ItemMapperV2 */
private $class;
- /** @var IUserManager */
- private $userManager;
/**
* @covers \OCA\News\Db\ItemMapperV2::__construct
@@ -39,8 +37,6 @@ class ItemMapperAfterTest extends MapperTestUtility
parent::setUp();
$time = $this->getMockBuilder(Time::class)
->getMock();
- $this->userManager = $this->getMockBuilder(IUserManager::class)
- ->getMock();
$this->class = new ItemMapperV2($this->db, $time);
}