Fix linter issue

This commit is contained in:
Leonid Logvinov
2017-11-23 13:53:19 -06:00
parent 3d11afd872
commit b3c0d54acd

View File

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