Skip to content

Commit

Permalink
chore(system): rename variable
Browse files Browse the repository at this point in the history
  • Loading branch information
xDivisionByZerox committed Jul 12, 2022
1 parent 4a19600 commit a76a2d4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/system.spec.ts
Expand Up @@ -207,13 +207,13 @@ describe('system', () => {

it.each(times(10))(
'should return filenames with %s extensions',
(extCount) => {
(extensionCount) => {
const fileName = faker.system.fileName({
extensionCount: extCount,
extensionCount,
});
const parts = fileName.split('.');

expect(parts).length(extCount + 1);
expect(parts).length(extensionCount + 1);
}
);
});
Expand Down

0 comments on commit a76a2d4

Please sign in to comment.