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 08611b88b6e..432f87a99bc 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 @@ -82,9 +82,9 @@ class ConcatCollections { @Test void shouldGetEmptyCollectionFromNullCollections() { - Collection concatenedCollection = JHipsterCollections.concat((Collection) null); + Collection concatenatedCollection = JHipsterCollections.concat((Collection) null); - assertThat(concatenedCollection).isEmpty(); + assertThat(concatenatedCollection).isEmpty(); } @Test