Skip to content

Commit

Permalink
Merge pull request #11248 from qmonmert/typo281024
Browse files Browse the repository at this point in the history
Some fixes
  • Loading branch information
murdos authored Oct 29, 2024
2 parents b999456 + a106af0 commit 25e6774
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/test/features/sample-feature.feature
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Original file line number Diff line number Diff line change
Expand Up @@ -117,9 +117,9 @@ class ConcatMaps {

@Test
void shouldGetEmptyMapFromNullMaps() {
Map<Number, String> concatenedMap = JHipsterCollections.concat((Map<Number, String>) null);
Map<Number, String> concatenatedMap = JHipsterCollections.concat((Map<Number, String>) null);

assertThat(concatenedMap).isEmpty();
assertThat(concatenatedMap).isEmpty();
}

@Test
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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);

Expand Down

0 comments on commit 25e6774

Please sign in to comment.