aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files_external/tests
diff options
context:
space:
mode:
authorVincent Petry <vincent@nextcloud.com>2023-01-11 14:40:10 +0100
committerVincent Petry <vincent@nextcloud.com>2023-01-13 10:27:17 +0100
commit4e179e0e07c848e3dcb31d1214a2516181e47d45 (patch)
tree6e3180422675f41e763e59b70a7dae7709336c24 /apps/files_external/tests
parenta0f70988f426aa3c327c95537f3e62bae2461707 (diff)
downloadnextcloud-server-4e179e0e07c848e3dcb31d1214a2516181e47d45.tar.gz
nextcloud-server-4e179e0e07c848e3dcb31d1214a2516181e47d45.zip
Enable SSL by default in ext storage configs
Signed-off-by: Vincent Petry <vincent@nextcloud.com>
Diffstat (limited to 'apps/files_external/tests')
-rw-r--r--apps/files_external/tests/DefinitionParameterTest.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/files_external/tests/DefinitionParameterTest.php b/apps/files_external/tests/DefinitionParameterTest.php
index 72e8c013730..04d5f6762c5 100644
--- a/apps/files_external/tests/DefinitionParameterTest.php
+++ b/apps/files_external/tests/DefinitionParameterTest.php
@@ -47,6 +47,7 @@ class DefinitionParameterTest extends \Test\TestCase {
$param->setType(Param::VALUE_PASSWORD);
$param->setFlag(Param::FLAG_OPTIONAL);
+ $param->setDefaultValue(null);
$this->assertEquals([
'value' => 'bar',
'flags' => Param::FLAG_OPTIONAL,