Skip to content
Snippets Groups Projects
Unverified Commit db49ae3c authored by Robin Appelman's avatar Robin Appelman
Browse files

fix external storage controller tests


Signed-off-by: default avatarRobin Appelman <robin@icewind.nl>
parent 17bc35e4
No related branches found
No related tags found
No related merge requests found
...@@ -66,6 +66,8 @@ abstract class StoragesControllerTest extends \Test\TestCase { ...@@ -66,6 +66,8 @@ abstract class StoragesControllerTest extends \Test\TestCase {
->willReturn($storageClass); ->willReturn($storageClass);
$backend->method('getIdentifier') $backend->method('getIdentifier')
->willReturn('identifier:'.$class); ->willReturn('identifier:'.$class);
$backend->method('getParameters')
->willReturn([]);
return $backend; return $backend;
} }
...@@ -80,6 +82,8 @@ abstract class StoragesControllerTest extends \Test\TestCase { ...@@ -80,6 +82,8 @@ abstract class StoragesControllerTest extends \Test\TestCase {
->willReturn($scheme); ->willReturn($scheme);
$authMech->method('getIdentifier') $authMech->method('getIdentifier')
->willReturn('identifier:'.$class); ->willReturn('identifier:'.$class);
$authMech->method('getParameters')
->willReturn([]);
return $authMech; 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