Fix linter issue

This commit is contained in:
Leonid Logvinov 2017-11-23 13:53:19 -06:00
parent 3d11afd872
commit b3c0d54acd
No known key found for this signature in database
GPG Key ID: 0DD294BFDE8C95D4

View File

@ -184,7 +184,7 @@ describe('Assertions', () => {
it('should not throw for valid input', () => { it('should not throw for valid input', () => {
const validInputs = [ const validInputs = [
42, 42,
0.00, // tslint:disable-line:number-literal-format 0,
21e+42, 21e+42,
]; ];
validInputs.forEach(input => expect(assert.isNumber.bind(assert, variableName, input)).to.not.throw()); validInputs.forEach(input => expect(assert.isNumber.bind(assert, variableName, input)).to.not.throw());