Skip to content

Commit 0a2c06b

Browse files
redblomAndyScherzinger
authored andcommitted
Fix test
Signed-off-by: Antoon Prins <antoon.prins@surf.nl>
1 parent 3a59287 commit 0a2c06b

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

tests/lib/Share20/ManagerTest.php

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -72,8 +72,6 @@ class ManagerTest extends \Test\TestCase {
7272
protected $logger;
7373
/** @var IConfig|MockObject */
7474
protected $config;
75-
/** @var IAppConfig|MockObject */
76-
protected $appConfig;
7775
/** @var ISecureRandom|MockObject */
7876
protected $secureRandom;
7977
/** @var IHasher|MockObject */
@@ -117,7 +115,6 @@ class ManagerTest extends \Test\TestCase {
117115
protected function setUp(): void {
118116
$this->logger = $this->createMock(LoggerInterface::class);
119117
$this->config = $this->createMock(IConfig::class);
120-
$this->appConfig = $this->createMock(IAppConfig::class);
121118
$this->secureRandom = $this->createMock(ISecureRandom::class);
122119
$this->hasher = $this->createMock(IHasher::class);
123120
$this->mountManager = $this->createMock(IMountManager::class);
@@ -163,7 +160,6 @@ private function createManager(IProviderFactory $factory): Manager {
163160
return new Manager(
164161
$this->logger,
165162
$this->config,
166-
$this->appConfig,
167163
$this->secureRandom,
168164
$this->hasher,
169165
$this->mountManager,
@@ -192,7 +188,6 @@ private function createManagerMock() {
192188
->setConstructorArgs([
193189
$this->logger,
194190
$this->config,
195-
$this->appConfig,
196191
$this->secureRandom,
197192
$this->hasher,
198193
$this->mountManager,

0 commit comments

Comments
 (0)