Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
  • Loading branch information
ST-DDT authored Mar 1, 2024
1 parent 4ea171c commit 53ec712
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/modules/helpers.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ describe('helpers', () => {
.it('with method and count range', () => faker.number.int(), {
count: { min: 1, max: 10 },
})
.it('with method using index', (_el, i) => i * 3);
.it('with method using index', (_, i) => i * 3);
});
});

Expand Down Expand Up @@ -1179,7 +1179,7 @@ describe('helpers', () => {
});

it('should generate values using index of created value', () => {
const result = faker.helpers.multiple((_el, i) => i * 2, {
const result = faker.helpers.multiple((_, i) => i * 2, {
count: 3,
});
expect(result).toBeTypeOf('object');
Expand Down

0 comments on commit 53ec712

Please sign in to comment.