aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorMaxence Lange <maxence@artificial-owl.com>2024-12-12 17:37:14 -0100
committerMaxence Lange <maxence@artificial-owl.com>2024-12-13 11:08:20 -0100
commit815991741d2001f7610047ef9627283037c1beec (patch)
tree6250d5998b5f4d1c13f00606c8a7634d12ed1886 /tests
parent96586ba7095b3d955b093bc34d696654faa80252 (diff)
downloadnextcloud-server-815991741d2001f7610047ef9627283037c1beec.tar.gz
nextcloud-server-815991741d2001f7610047ef9627283037c1beec.zip
fix(lexicon): renaming and minor fixesfeature/noid/config-lexicon
Signed-off-by: Maxence Lange <maxence@artificial-owl.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/lib/AppConfigTest.php4
1 files changed, 0 insertions, 4 deletions
diff --git a/tests/lib/AppConfigTest.php b/tests/lib/AppConfigTest.php
index 775c9027dd6..518d7909d70 100644
--- a/tests/lib/AppConfigTest.php
+++ b/tests/lib/AppConfigTest.php
@@ -9,7 +9,6 @@ namespace Test;
use InvalidArgumentException;
use OC\AppConfig;
-use OC\AppFramework\Bootstrap\Coordinator;
use OCP\Exceptions\AppConfigTypeConflictException;
use OCP\Exceptions\AppConfigUnknownKeyException;
use OCP\IAppConfig;
@@ -29,7 +28,6 @@ class AppConfigTest extends TestCase {
protected IDBConnection $connection;
private LoggerInterface $logger;
private ICrypto $crypto;
- private Coordinator $coordinator;
private array $originalConfig;
@@ -91,7 +89,6 @@ class AppConfigTest extends TestCase {
$this->connection = \OCP\Server::get(IDBConnection::class);
$this->logger = \OCP\Server::get(LoggerInterface::class);
$this->crypto = \OCP\Server::get(ICrypto::class);
- $this->coordinator = \OCP\Server::get(Coordinator::class);
// storing current config and emptying the data table
$sql = $this->connection->getQueryBuilder();
@@ -182,7 +179,6 @@ class AppConfigTest extends TestCase {
$this->connection,
$this->logger,
$this->crypto,
- $this->coordinator
);
$msg = ' generateAppConfig() failed to confirm cache status';