Merge pull request #45091 from nextcloud/Jerome-Herbinet-education-bundle

Education "bundle"
pull/47061/head
Andy Scherzinger 2024-08-06 11:44:37 +07:00 committed by GitHub
commit 7a7f259f3c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 3 additions and 3 deletions

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

@ -10,7 +10,7 @@ class EducationBundle extends Bundle {
* {@inheritDoc}
*/
public function getName() {
return $this->l10n->t('Education Edition');
return $this->l10n->t('Education bundle');
}
/**

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