From 110376802053eff301556d5d1f0fec51237a6441 Mon Sep 17 00:00:00 2001 From: Quentin Date: Mon, 28 Oct 2024 22:13:21 +0100 Subject: [PATCH 1/3] Typo: maching=>matching --- .../module/primary/modules-patch/ModulesPatchComponent.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); From b8fb1ff21a6613bdf9c9293f540be69b597b1dfe Mon Sep 17 00:00:00 2001 From: Quentin Date: Mon, 28 Oct 2024 22:22:17 +0100 Subject: [PATCH 2/3] Typo: postgresl=>postgresql --- src/test/features/sample-feature.feature | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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" From a106af05d5817c03ac64d466b68e972170211fdb Mon Sep 17 00:00:00 2001 From: Quentin Date: Mon, 28 Oct 2024 22:30:24 +0100 Subject: [PATCH 3/3] Typo: concatened=>concatenated --- .../shared/collection/domain/JHipsterCollectionsTest.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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