Skip to content

Commit

Permalink
Merge pull request #10929 from qmonmert/typo190924v2
Browse files Browse the repository at this point in the history
Typo
  • Loading branch information
murdos committed Sep 21, 2024
2 parents 47e86bb + 42d139d commit 0178987
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ export class LandscapeNavigation {
}

private isInModuleDependencies(dependencies: LandscapeElementId[]): boolean {
return dependencies.findIndex(depenecie => depenecie.get() == this.module().slug().get()) >= 0;
return dependencies.findIndex(dependency => dependency.get() == this.module().slug().get()) >= 0;
}

private findModuleIndexInDependencies(modules: LandscapeModule[]): number {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@ describe('Modules', () => {
expect(wrapper.find(wrappedElement('module-spring-cucumber-optionalBoolean-parameter-value')).text()).toBe('');
});

it('should set integer parameter to undefine', async () => {
it('should set integer parameter to undefined', async () => {
const wrapper = await componentWithModules();
await selectModule(wrapper);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ describe('Optional', () => {
).toBe('value');
});

it('should filter valudated optional with unmatching filter', () => {
it('should filter valuated optional with unmatching filter', () => {
expect(
Optional.of('value')
.filter(() => false)
Expand Down

0 comments on commit 0178987

Please sign in to comment.