diff options
author | Julius Härtl <jus@bitgrid.net> | 2018-01-30 16:17:51 +0100 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2018-01-31 14:15:12 +0100 |
commit | 372e06d74244b22ab6f79cd36e769e955482dc55 (patch) | |
tree | 2207e4b37510a7bfab48a7a0e316eb25cafa6a18 /apps | |
parent | efbdad2d0c5ee26fafe48cafb4bf4703b23ea1fd (diff) | |
download | nextcloud-server-372e06d74244b22ab6f79cd36e769e955482dc55.tar.gz nextcloud-server-372e06d74244b22ab6f79cd36e769e955482dc55.zip |
Add all parameters to returnValueMap
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'apps')
-rw-r--r-- | apps/dav/tests/unit/AppInfo/PluginManagerTest.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/dav/tests/unit/AppInfo/PluginManagerTest.php b/apps/dav/tests/unit/AppInfo/PluginManagerTest.php index a4fcef92511..ed19bdd53cd 100644 --- a/apps/dav/tests/unit/AppInfo/PluginManagerTest.php +++ b/apps/dav/tests/unit/AppInfo/PluginManagerTest.php @@ -72,8 +72,8 @@ class PluginManagerTest extends TestCase { $appManager->method('getAppInfo') ->will($this->returnValueMap([ - ['adavapp', $appInfo1], - ['adavapp2', $appInfo2], + ['adavapp', false, null, $appInfo1], + ['adavapp2', false, null, $appInfo2], ])); $pluginManager = new PluginManager($server, $appManager); |