Merge pull request #19931 from nextcloud/external-storage-password-placeholders-fix-tests

fix external storage controller tests
This commit is contained in:
Robin Appelman 2020-03-13 18:44:43 +00:00 committed by GitHub
commit 12e54047a1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 0 deletions

View File

@ -66,6 +66,8 @@ abstract class StoragesControllerTest extends \Test\TestCase {
->willReturn($storageClass);
$backend->method('getIdentifier')
->willReturn('identifier:'.$class);
$backend->method('getParameters')
->willReturn([]);
return $backend;
}
@ -80,6 +82,8 @@ abstract class StoragesControllerTest extends \Test\TestCase {
->willReturn($scheme);
$authMech->method('getIdentifier')
->willReturn('identifier:'.$class);
$authMech->method('getParameters')
->willReturn([]);
return $authMech;
}