diff options
author | nhirokinet <nhirokinet@nhiroki.net> | 2020-10-25 11:47:43 +0000 |
---|---|---|
committer | John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | 2020-11-02 11:29:08 +0100 |
commit | 830348dbee748bb76bc68f65ad8ccac9356d14f7 (patch) | |
tree | 333dfa4d4a9aab00d3ff5cef033e8491e0a34bde /apps/settings/tests/Controller/CheckSetupControllerTest.php | |
parent | a3e4094792f2867b36f7baad97b4ec1066418ae4 (diff) | |
download | nextcloud-server-830348dbee748bb76bc68f65ad8ccac9356d14f7.tar.gz nextcloud-server-830348dbee748bb76bc68f65ad8ccac9356d14f7.zip |
Add SVG support check to setup check
Signed-off-by: nhirokinet <nhirokinet@nhiroki.net>
Diffstat (limited to 'apps/settings/tests/Controller/CheckSetupControllerTest.php')
-rw-r--r-- | apps/settings/tests/Controller/CheckSetupControllerTest.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/settings/tests/Controller/CheckSetupControllerTest.php b/apps/settings/tests/Controller/CheckSetupControllerTest.php index 13bb54c7cea..64d27dcda89 100644 --- a/apps/settings/tests/Controller/CheckSetupControllerTest.php +++ b/apps/settings/tests/Controller/CheckSetupControllerTest.php @@ -594,6 +594,7 @@ class CheckSetupControllerTest extends TestCase { 'OCA\Settings\SetupChecks\PhpDefaultCharset' => ['pass' => true, 'description' => 'PHP configuration option default_charset should be UTF-8', 'severity' => 'warning'], 'OCA\Settings\SetupChecks\PhpOutputBuffering' => ['pass' => true, 'description' => 'PHP configuration option output_buffering must be disabled', 'severity' => 'error'], 'OCA\Settings\SetupChecks\LegacySSEKeyFormat' => ['pass' => true, 'description' => 'The old server-side-encryption format is enabled. We recommend disabling this.', 'severity' => 'warning', 'linkToDocumentation' => ''], + 'imageMagickLacksSVGSupport' => false, ] ); $this->assertEquals($expected, $this->checkSetupController->check()); |