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>
This commit is contained in:
Jérôme Herbinet 2024-04-29 10:40:40 +02:00 committed by Jan C. Borchardt
parent eecc9f328b
commit c221090c86
3 changed files with 3 additions and 3 deletions

View 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')
})

View 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');
}
/**

View 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',