diff --git a/src/test/features/sample-feature.feature b/src/test/features/sample-feature.feature index a70750ce65a..c81c007c0fc 100644 --- a/src/test/features/sample-feature.feature +++ b/src/test/features/sample-feature.feature @@ -42,6 +42,6 @@ Feature: Sample feature module When I apply "sample-postgresql-flyway-changelog" module to default project without parameters Then I should have 1 file in "src/main/resources/db/migration" - Scenario: Should Apply sample not postgresl flyway module + Scenario: Should Apply sample not postgresql flyway module When I apply "sample-not-postgresql-flyway-changelog" module to default project without parameters Then I should have 1 file in "src/main/resources/db/migration" diff --git a/src/test/java/tech/jhipster/lite/shared/collection/domain/JHipsterCollectionsTest.java b/src/test/java/tech/jhipster/lite/shared/collection/domain/JHipsterCollectionsTest.java index 432f87a99bc..b9e22703b80 100644 --- a/src/test/java/tech/jhipster/lite/shared/collection/domain/JHipsterCollectionsTest.java +++ b/src/test/java/tech/jhipster/lite/shared/collection/domain/JHipsterCollectionsTest.java @@ -117,9 +117,9 @@ class ConcatMaps { @Test void shouldGetEmptyMapFromNullMaps() { - Map concatenedMap = JHipsterCollections.concat((Map) null); + Map concatenatedMap = JHipsterCollections.concat((Map) null); - assertThat(concatenedMap).isEmpty(); + assertThat(concatenatedMap).isEmpty(); } @Test diff --git a/src/test/webapp/unit/module/primary/modules-patch/ModulesPatchComponent.spec.ts b/src/test/webapp/unit/module/primary/modules-patch/ModulesPatchComponent.spec.ts index 1b8c2def912..9c68217cd7a 100644 --- a/src/test/webapp/unit/module/primary/modules-patch/ModulesPatchComponent.spec.ts +++ b/src/test/webapp/unit/module/primary/modules-patch/ModulesPatchComponent.spec.ts @@ -556,7 +556,7 @@ describe('Modules', () => { expect(wrapper.find(wrappedElement('module-spring-cucumber-application-button')).exists()).toBe(true); }); - it('should filter modules with no maching module', async () => { + it('should filter modules with no matching module', async () => { const modules = repositoryWithModules(); const wrapper = await filledModuleForm(modules);