Skip to content

Commit

Permalink
Lint Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
bloodf committed Apr 11, 2019
1 parent 093933c commit 1be6b83
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/validators.js
Expand Up @@ -18,7 +18,7 @@ function test(options) {
let warning = format(
'validator.%s(%s) failed but should have passed',
options.validator,
args.join(', '),
args.join(', ')
);
throw new Error(warning);
}
Expand All @@ -31,7 +31,7 @@ function test(options) {
let warning = format(
'validator.%s(%s) passed but should have failed',
options.validator,
args.join(', '),
args.join(', ')
);
throw new Error(warning);
}
Expand Down Expand Up @@ -67,7 +67,7 @@ describe('Validators', () => {
`${repeat('a', 64)}@${repeat('a', 63)}.com`,
`${repeat('a', 64)}@${repeat('a', 63)}.${repeat('a', 63)}.${repeat(
'a',
63,
63
)}.${repeat('a', 58)}.com`,
`${repeat('a', 64)}@${repeat('a', 63)}.com`,
`${repeat('a', 31)}@gmail.com`,
Expand Down

0 comments on commit 1be6b83

Please sign in to comment.