Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
Signed-off-by: Antoon Prins <[email protected]>
  • Loading branch information
redblom committed Feb 19, 2025
1 parent 75fb743 commit 6d54dc3
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions tests/lib/Share20/ManagerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,6 @@ class ManagerTest extends \Test\TestCase {
protected $logger;
/** @var IConfig|MockObject */
protected $config;
/** @var IAppConfig|MockObject */
protected $appConfig;
/** @var ISecureRandom|MockObject */
protected $secureRandom;
/** @var IHasher|MockObject */
Expand Down Expand Up @@ -117,7 +115,6 @@ class ManagerTest extends \Test\TestCase {
protected function setUp(): void {
$this->logger = $this->createMock(LoggerInterface::class);
$this->config = $this->createMock(IConfig::class);
$this->appConfig = $this->createMock(IAppConfig::class);
$this->secureRandom = $this->createMock(ISecureRandom::class);
$this->hasher = $this->createMock(IHasher::class);
$this->mountManager = $this->createMock(IMountManager::class);
Expand Down Expand Up @@ -163,7 +160,6 @@ private function createManager(IProviderFactory $factory): Manager {
return new Manager(
$this->logger,
$this->config,
$this->appConfig,
$this->secureRandom,
$this->hasher,
$this->mountManager,
Expand Down Expand Up @@ -192,7 +188,6 @@ private function createManagerMock() {
->setConstructorArgs([
$this->logger,
$this->config,
$this->appConfig,
$this->secureRandom,
$this->hasher,
$this->mountManager,
Expand Down

0 comments on commit 6d54dc3

Please sign in to comment.