From 910a0d395e2bb495c4cd5381e5e7eed0d1ce383c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?John=20Molakvo=C3=A6?= Date: Fri, 1 Aug 2025 11:28:41 +0200 Subject: [PATCH] fix: unwanted imports after rebase MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: John Molakvoæ --- tests/lib/Config/LexiconTest.php | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/tests/lib/Config/LexiconTest.php b/tests/lib/Config/LexiconTest.php index f95246e0da3..838b25e49b0 100644 --- a/tests/lib/Config/LexiconTest.php +++ b/tests/lib/Config/LexiconTest.php @@ -7,9 +7,6 @@ declare(strict_types=1); */ namespace Tests\lib\Config; -use NCU\Config\Exceptions\TypeConflictException; -use NCU\Config\Exceptions\UnknownKeyException; -use NCU\Config\IUserConfig; use OC\AppConfig; use OC\AppFramework\Bootstrap\Coordinator; use OC\Config\ConfigManager; @@ -81,6 +78,7 @@ class LexiconTest extends TestCase { // to avoid filling cache with an empty Lexicon, we use a new IAppConfig $appConfig = new AppConfig( Server::get(IDBConnection::class), + Server::get(IConfig::class), Server::get(LoggerInterface::class), Server::get(ICrypto::class), );