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

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2020-04-17 12:19:32 +0300
committerRoeland Jago Douma <roeland@famdouma.nl>2020-04-18 12:21:28 +0300
commit031b6656d1e67fae4af5a0aeab69c668c3cd586d (patch)
tree45948f743e0fdc47e1a8dbb30b20ed813778a7d8 /apps/testing
parent9654a924abb76aae5299780f3ae3868d2244c90c (diff)
Reduce noise in test output
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'apps/testing')
-rw-r--r--apps/testing/appinfo/app.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/testing/appinfo/app.php b/apps/testing/appinfo/app.php
index 48d8da8c20b..428899df691 100644
--- a/apps/testing/appinfo/app.php
+++ b/apps/testing/appinfo/app.php
@@ -1,4 +1,5 @@
<?php
+declare(strict_types=1);
/**
* @copyright Copyright (c) 2016, ownCloud GmbH.
*
@@ -21,4 +22,4 @@
*
*/
-$app = new \OCA\Testing\AppInfo\Application();
+$app = \OC::$server->query(\OCA\Testing\AppInfo\Application::class);