@@ -217,15 +217,15 @@ describe('Evaluate: ', () => {
217217 } )
218218
219219 it ( 'should throw error if an argument is null' , ( ) => {
220- ( ( ) => { evaluate ( 'a + null' , testData ) } ) . should . Throw ( )
220+ ( ( ) => { evaluate ( 'a + null' , testData ) } ) . should . throw ( )
221221 } )
222222
223223 it ( 'should throw error if an argument is undefined' , ( ) => {
224- ( ( ) => { evaluate ( 'a + undefined' , testData ) } ) . should . Throw ( )
224+ ( ( ) => { evaluate ( 'a + undefined' , testData ) } ) . should . throw ( )
225225 } )
226226
227227 it ( 'should throw error if an argument is NaN' , ( ) => {
228- ( ( ) => { evaluate ( 'a + NaN' , testData ) } ) . should . Throw ( )
228+ ( ( ) => { evaluate ( 'a + NaN' , testData ) } ) . should . throw ( )
229229 } )
230230
231231 it ( 'should add true to numbers' , ( ) => {
@@ -261,15 +261,15 @@ describe('Evaluate: ', () => {
261261 } )
262262
263263 it ( 'should throw error if an argument is null' , ( ) => {
264- ( ( ) => { evaluate ( 'a - null' , testData ) } ) . should . Throw ( )
264+ ( ( ) => { evaluate ( 'a - null' , testData ) } ) . should . throw ( )
265265 } )
266266
267267 it ( 'should throw error if an argument is undefined' , ( ) => {
268- ( ( ) => { evaluate ( 'a - undefined' , testData ) } ) . should . Throw ( )
268+ ( ( ) => { evaluate ( 'a - undefined' , testData ) } ) . should . throw ( )
269269 } )
270270
271271 it ( 'should throw error if an argument is NaN' , ( ) => {
272- ( ( ) => { evaluate ( 'a - NaN' , testData ) } ) . should . Throw ( )
272+ ( ( ) => { evaluate ( 'a - NaN' , testData ) } ) . should . throw ( )
273273 } )
274274
275275 it ( 'should subtract true from numbers' , ( ) => {
@@ -312,15 +312,15 @@ describe('Evaluate: ', () => {
312312 } )
313313
314314 it ( 'should throw error if an argument is null' , ( ) => {
315- ( ( ) => { evaluate ( 'a * null' , testData ) } ) . should . Throw ( )
315+ ( ( ) => { evaluate ( 'a * null' , testData ) } ) . should . throw ( )
316316 } )
317317
318318 it ( 'should throw error if an argument is undefined' , ( ) => {
319- ( ( ) => { evaluate ( 'a * undefined' , testData ) } ) . should . Throw ( )
319+ ( ( ) => { evaluate ( 'a * undefined' , testData ) } ) . should . throw ( )
320320 } )
321321
322322 it ( 'should throw error if an argument is NaN' , ( ) => {
323- ( ( ) => { evaluate ( 'a * NaN' , testData ) } ) . should . Throw ( )
323+ ( ( ) => { evaluate ( 'a * NaN' , testData ) } ) . should . throw ( )
324324 } )
325325
326326 it ( 'should flip the sign of Infinity' , ( ) => {
@@ -377,15 +377,15 @@ describe('Evaluate: ', () => {
377377 } )
378378
379379 it ( 'should throw error if an argument is null' , ( ) => {
380- ( ( ) => { evaluate ( 'a / null' , testData ) } ) . should . Throw ( )
380+ ( ( ) => { evaluate ( 'a / null' , testData ) } ) . should . throw ( )
381381 } )
382382
383383 it ( 'should throw error if an argument is undefined' , ( ) => {
384- ( ( ) => { evaluate ( 'a / undefined' , testData ) } ) . should . Throw ( )
384+ ( ( ) => { evaluate ( 'a / undefined' , testData ) } ) . should . throw ( )
385385 } )
386386
387387 it ( 'should throw error if an argument is NaN' , ( ) => {
388- ( ( ) => { evaluate ( 'a / NaN' , testData ) } ) . should . Throw ( )
388+ ( ( ) => { evaluate ( 'a / NaN' , testData ) } ) . should . throw ( )
389389 } )
390390 } )
391391
0 commit comments