diff options
author | Côme Chilliet <91878298+come-nc@users.noreply.github.com> | 2025-02-13 11:33:52 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-02-13 11:33:52 +0100 |
commit | ed9b47462f25937831471ba1aabcc03757e5dee5 (patch) | |
tree | 80e07fb06f64b52a2c3c3df396953c065be76431 /apps/dav/tests | |
parent | ee48cafd200233203a1444dba797ef3eb89a35ca (diff) | |
parent | f758f565d4da004ebef97350365a066eee5267fe (diff) | |
download | nextcloud-server-ed9b47462f25937831471ba1aabcc03757e5dee5.tar.gz nextcloud-server-ed9b47462f25937831471ba1aabcc03757e5dee5.zip |
Merge pull request #49648 from nextcloud/fix/clarify-app-manager-methods
Clarify app manager method names
Diffstat (limited to 'apps/dav/tests')
-rw-r--r-- | apps/dav/tests/unit/AppInfo/PluginManagerTest.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/dav/tests/unit/AppInfo/PluginManagerTest.php b/apps/dav/tests/unit/AppInfo/PluginManagerTest.php index 8211cdfc02c..7a60888a838 100644 --- a/apps/dav/tests/unit/AppInfo/PluginManagerTest.php +++ b/apps/dav/tests/unit/AppInfo/PluginManagerTest.php @@ -24,7 +24,7 @@ class PluginManagerTest extends TestCase { $server = $this->createMock(ServerContainer::class); $appManager = $this->createMock(AppManager::class); - $appManager->method('getInstalledApps') + $appManager->method('getEnabledApps') ->willReturn(['adavapp', 'adavapp2']); $appInfo1 = [ |