]> source.dussan.org Git - nextcloud-server.git/commitdiff
fix: unify bundle naming 45091/head
authorJérôme Herbinet <33763786+Jerome-Herbinet@users.noreply.github.com>
Mon, 29 Apr 2024 08:40:40 +0000 (10:40 +0200)
committerJan C. Borchardt <925062+jancborchardt@users.noreply.github.com>
Tue, 6 Aug 2024 09:14:07 +0000 (11:14 +0200)
Signed-off-by: Jérôme Herbinet <33763786+Jerome-Herbinet@users.noreply.github.com>
Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
cypress/e2e/settings/apps.cy.ts
lib/private/App/AppStore/Bundles/EducationBundle.php
tests/lib/App/AppStore/Bundles/EducationBundleTest.php

index e9913cdc82ff447624f48ca417f5a1fb7ed4e947..0df073271efa33e8f53ead6a017b32e6d85c976d 100644 (file)
@@ -123,7 +123,7 @@ describe('Settings: App management', { testIsolation: true }, () => {
                cy.get('#app-category-your-bundles').find('.active').should('exist')
                // I see the app bundles
                cy.get('#apps-list').contains('tr', 'Enterprise bundle')
-               cy.get('#apps-list').contains('tr', 'Education Edition')
+               cy.get('#apps-list').contains('tr', 'Education bundle')
                // I see that the "Enterprise bundle" is disabled
                cy.get('#apps-list').contains('tr', 'Enterprise bundle').contains('button', 'Download and enable all')
        })
index a08d707b021178e46c8d3bc23d67f603073f64b6..83fcf5309ca34434dff7d882c584dc4dfbe007cc 100644 (file)
@@ -10,7 +10,7 @@ class EducationBundle extends Bundle {
         * {@inheritDoc}
         */
        public function getName() {
-               return $this->l10n->t('Education Edition');
+               return $this->l10n->t('Education bundle');
        }
 
        /**
index a4508e6156b9ad070908db58e58c77f4e68f3eed..2bed8b987fc17d9cce8bba3074c38075e2708313 100644 (file)
@@ -13,7 +13,7 @@ class EducationBundleTest extends BundleBase {
                parent::setUp();
                $this->bundle = new EducationBundle($this->l10n);
                $this->bundleIdentifier = 'EducationBundle';
-               $this->bundleName = 'Education Edition';
+               $this->bundleName = 'Education bundle';
                $this->bundleAppIds = [
                        'dashboard',
                        'circles',