diff options
Diffstat (limited to 'tests/lib/App/AppStore/Bundles/BundleFetcherTest.php')
-rw-r--r-- | tests/lib/App/AppStore/Bundles/BundleFetcherTest.php | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/tests/lib/App/AppStore/Bundles/BundleFetcherTest.php b/tests/lib/App/AppStore/Bundles/BundleFetcherTest.php index 55534cae699..daec97255ca 100644 --- a/tests/lib/App/AppStore/Bundles/BundleFetcherTest.php +++ b/tests/lib/App/AppStore/Bundles/BundleFetcherTest.php @@ -22,7 +22,6 @@ namespace Test\App\AppStore\Bundles; use OC\App\AppStore\Bundles\BundleFetcher; -use OC\App\AppStore\Bundles\CoreBundle; use OC\App\AppStore\Bundles\EducationBundle; use OC\App\AppStore\Bundles\EnterpriseBundle; use OC\App\AppStore\Bundles\GroupwareBundle; @@ -59,15 +58,12 @@ class BundleFetcherTest extends TestCase { } public function testGetDefaultInstallationBundle() { - $expected = [ - new CoreBundle($this->l10n), - ]; + $expected = []; $this->assertEquals($expected, $this->bundleFetcher->getDefaultInstallationBundle()); } public function testGetBundleByIdentifier() { $this->assertEquals(new EnterpriseBundle($this->l10n), $this->bundleFetcher->getBundleByIdentifier('EnterpriseBundle')); - $this->assertEquals(new CoreBundle($this->l10n), $this->bundleFetcher->getBundleByIdentifier('CoreBundle')); $this->assertEquals(new GroupwareBundle($this->l10n), $this->bundleFetcher->getBundleByIdentifier('GroupwareBundle')); } |