diff options
Diffstat (limited to 'apps/files_external/tests/controller')
-rw-r--r-- | apps/files_external/tests/controller/storagescontrollertest.php | 8 | ||||
-rw-r--r-- | apps/files_external/tests/controller/userstoragescontrollertest.php | 2 |
2 files changed, 10 insertions, 0 deletions
diff --git a/apps/files_external/tests/controller/storagescontrollertest.php b/apps/files_external/tests/controller/storagescontrollertest.php index fefe2928d76..853b4a86f03 100644 --- a/apps/files_external/tests/controller/storagescontrollertest.php +++ b/apps/files_external/tests/controller/storagescontrollertest.php @@ -62,6 +62,7 @@ abstract class StoragesControllerTest extends \Test\TestCase { array(), [], [], + [], null ); @@ -85,6 +86,7 @@ abstract class StoragesControllerTest extends \Test\TestCase { array(), [], [], + [], null ); @@ -116,6 +118,7 @@ abstract class StoragesControllerTest extends \Test\TestCase { array(), [], [], + [], null ); @@ -128,6 +131,7 @@ abstract class StoragesControllerTest extends \Test\TestCase { array(), [], [], + [], null ); @@ -146,6 +150,7 @@ abstract class StoragesControllerTest extends \Test\TestCase { array(), [], [], + [], null ); @@ -158,6 +163,7 @@ abstract class StoragesControllerTest extends \Test\TestCase { array(), [], [], + [], null ); @@ -176,6 +182,7 @@ abstract class StoragesControllerTest extends \Test\TestCase { array(), [], [], + [], null ); @@ -204,6 +211,7 @@ abstract class StoragesControllerTest extends \Test\TestCase { $storageConfig->setMountPoint('test'); $storageConfig->setBackendClass('\OC\Files\Storage\SMB'); $storageConfig->setBackendOptions(['user' => 'test', 'password', 'password123']); + $storageConfig->setMountOptions(['priority' => false]); $this->service->expects($this->once()) ->method('getStorage') diff --git a/apps/files_external/tests/controller/userstoragescontrollertest.php b/apps/files_external/tests/controller/userstoragescontrollertest.php index 9d6fbb15e23..0ba413f6959 100644 --- a/apps/files_external/tests/controller/userstoragescontrollertest.php +++ b/apps/files_external/tests/controller/userstoragescontrollertest.php @@ -91,6 +91,7 @@ class UserStoragesControllerTest extends StoragesControllerTest { array(), [], [], + [], null ); @@ -103,6 +104,7 @@ class UserStoragesControllerTest extends StoragesControllerTest { array(), [], [], + [], null ); |