diff options
author | Joas Schilling <coding@schilljs.com> | 2020-04-17 11:19:32 +0200 |
---|---|---|
committer | Roeland Jago Douma <roeland@famdouma.nl> | 2020-04-18 11:21:28 +0200 |
commit | 031b6656d1e67fae4af5a0aeab69c668c3cd586d (patch) | |
tree | 45948f743e0fdc47e1a8dbb30b20ed813778a7d8 /apps/testing | |
parent | 9654a924abb76aae5299780f3ae3868d2244c90c (diff) | |
download | nextcloud-server-031b6656d1e67fae4af5a0aeab69c668c3cd586d.tar.gz nextcloud-server-031b6656d1e67fae4af5a0aeab69c668c3cd586d.zip |
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.php | 3 |
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); |