diff options
author | Jérôme Herbinet <33763786+Jerome-Herbinet@users.noreply.github.com> | 2024-04-29 10:40:40 +0200 |
---|---|---|
committer | Jan C. Borchardt <925062+jancborchardt@users.noreply.github.com> | 2024-08-06 11:14:07 +0200 |
commit | c221090c86ebadde936fb593c4bb9b54825d12da (patch) | |
tree | c147776df77cd0276d83da351395f4d8aa4e9040 | |
parent | eecc9f328bca382cc3fdb126ab86b16aad176477 (diff) | |
download | nextcloud-server-c221090c86ebadde936fb593c4bb9b54825d12da.tar.gz nextcloud-server-c221090c86ebadde936fb593c4bb9b54825d12da.zip |
fix: unify bundle naming
Signed-off-by: Jérôme Herbinet <33763786+Jerome-Herbinet@users.noreply.github.com>
Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
-rw-r--r-- | cypress/e2e/settings/apps.cy.ts | 2 | ||||
-rw-r--r-- | lib/private/App/AppStore/Bundles/EducationBundle.php | 2 | ||||
-rw-r--r-- | tests/lib/App/AppStore/Bundles/EducationBundleTest.php | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/cypress/e2e/settings/apps.cy.ts b/cypress/e2e/settings/apps.cy.ts index e9913cdc82f..0df073271ef 100644 --- a/cypress/e2e/settings/apps.cy.ts +++ b/cypress/e2e/settings/apps.cy.ts @@ -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') }) diff --git a/lib/private/App/AppStore/Bundles/EducationBundle.php b/lib/private/App/AppStore/Bundles/EducationBundle.php index a08d707b021..83fcf5309ca 100644 --- a/lib/private/App/AppStore/Bundles/EducationBundle.php +++ b/lib/private/App/AppStore/Bundles/EducationBundle.php @@ -10,7 +10,7 @@ class EducationBundle extends Bundle { * {@inheritDoc} */ public function getName() { - return $this->l10n->t('Education Edition'); + return $this->l10n->t('Education bundle'); } /** diff --git a/tests/lib/App/AppStore/Bundles/EducationBundleTest.php b/tests/lib/App/AppStore/Bundles/EducationBundleTest.php index a4508e6156b..2bed8b987fc 100644 --- a/tests/lib/App/AppStore/Bundles/EducationBundleTest.php +++ b/tests/lib/App/AppStore/Bundles/EducationBundleTest.php @@ -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', |