Skip to content
Snippets Groups Projects
Unverified Commit 12e54047 authored by Robin Appelman's avatar Robin Appelman Committed by GitHub
Browse files

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

fix external storage controller tests
parents dc0ee357 db49ae3c
No related branches found
No related tags found
No related merge requests found
......@@ -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;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment