mirror of
https://github.com/nextcloud/server.git
synced 2026-04-21 14:23:17 -04:00
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:
parent
eecc9f328b
commit
c221090c86
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',
|
||||
|
|
|
|||
Loading…
Reference in a new issue