Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/deck.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorJulius Härtl <jus@bitgrid.net>2022-05-12 12:11:45 +0300
committerJulius Härtl <jus@bitgrid.net>2022-05-13 12:52:21 +0300
commitce7da62a8807593b63a5f26a788dee8122b8278b (patch)
treea088c69e0fb60737935fb530f8c27aaf3de06625 /tests
parent3a783a722a29e5e4557417d297126afcaf1e459d (diff)
Revert lazy use of userId in ConfigService
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'tests')
-rw-r--r--tests/integration/app/AppTest.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/integration/app/AppTest.php b/tests/integration/app/AppTest.php
index c25e0c51..399de955 100644
--- a/tests/integration/app/AppTest.php
+++ b/tests/integration/app/AppTest.php
@@ -34,7 +34,7 @@ class AppTest extends TestCase {
public function setUp(): void {
parent::setUp();
- $this->app = new \OCA\Deck\AppInfo\Application();
+ $this->app = \OCP\Server::get(\OCA\Deck\AppInfo\Application::class);
$this->container = $this->app->getContainer();
}