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 Jun 24, 2022
1 parent d2ecae9 commit 0bd31da
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 0bd31da

Please sign in to comment.