diff options
author | Arthur Schiwon <blizzz@arthur-schiwon.de> | 2022-09-22 13:29:02 +0200 |
---|---|---|
committer | Arthur Schiwon <blizzz@arthur-schiwon.de> | 2022-09-22 15:11:39 +0200 |
commit | a133a8a9d7771ca4e5d632b6e48e5f3ce1847862 (patch) | |
tree | 997dcc49462b263ec059857c85675e9eaa42d285 /tests | |
parent | a7af25e1d99b95831ec61dc35c734974a60b26fd (diff) | |
download | nextcloud-server-a133a8a9d7771ca4e5d632b6e48e5f3ce1847862.tar.gz nextcloud-server-a133a8a9d7771ca4e5d632b6e48e5f3ce1847862.zip |
remove getDefaultInstallationBundle
- because all apps are shipped now it was returning an empty result
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/lib/App/AppStore/Bundles/BundleFetcherTest.php | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/tests/lib/App/AppStore/Bundles/BundleFetcherTest.php b/tests/lib/App/AppStore/Bundles/BundleFetcherTest.php index daec97255ca..c1fe5ef328a 100644 --- a/tests/lib/App/AppStore/Bundles/BundleFetcherTest.php +++ b/tests/lib/App/AppStore/Bundles/BundleFetcherTest.php @@ -57,11 +57,6 @@ class BundleFetcherTest extends TestCase { $this->assertEquals($expected, $this->bundleFetcher->getBundles()); } - public function testGetDefaultInstallationBundle() { - $expected = []; - $this->assertEquals($expected, $this->bundleFetcher->getDefaultInstallationBundle()); - } - public function testGetBundleByIdentifier() { $this->assertEquals(new EnterpriseBundle($this->l10n), $this->bundleFetcher->getBundleByIdentifier('EnterpriseBundle')); $this->assertEquals(new GroupwareBundle($this->l10n), $this->bundleFetcher->getBundleByIdentifier('GroupwareBundle')); |