Skip to content

Commit

Permalink
Fix lint (#120)
Browse files Browse the repository at this point in the history
  • Loading branch information
snewcomer authored Feb 9, 2022
1 parent 3f36c69 commit 44aff16
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/unit/validators/inclusion-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ test('range type check - number', function (assert) {
assert.true(processResult(result));

result = validate(NaN, cloneOptions({ description: 'NaN', ...options }));
assert.equal(processResult(result), 'NaN is not included in the list');
assert.strictEqual(processResult(result), 'NaN is not included in the list');
});

test('range type check - string', function (assert) {
Expand Down

0 comments on commit 44aff16

Please sign in to comment.