File tree Expand file tree Collapse file tree 3 files changed +2
-7
lines changed
math/base/tools/normhermitepolyf/test Expand file tree Collapse file tree 3 files changed +2
-7
lines changed Original file line number Diff line number Diff line change @@ -98,7 +98,7 @@ bool = isBigInt64Array( new Float64Array( 10 ) );
9898bool = isBigInt64Array ( new Float32Array ( 10 ) );
9999// returns false
100100
101- bool = isBigInt64Array ( new Array ( 10 ) );
101+ bool = isBigInt64Array ( [] );
102102// returns false
103103
104104bool = isBigInt64Array ( {} );
Original file line number Diff line number Diff line change @@ -74,7 +74,7 @@ bool = isBigInt64Array( new Float32Array( 10 ) );
7474console . error ( bool ) ;
7575// => false
7676
77- bool = isBigInt64Array ( new Array ( 10 ) ) ;
77+ bool = isBigInt64Array ( [ ] ) ;
7878console . error ( bool ) ;
7979// => false
8080
Original file line number Diff line number Diff line change @@ -31,23 +31,18 @@ var factory = require( './../lib' ).factory;
3131// FIXTURES //
3232
3333var random2 = require ( './fixtures/python/random2.json' ) ;
34-
3534var mediumNegative1 = require ( './fixtures/python/medium_negative_1.json' ) ;
3635var mediumNegative2 = require ( './fixtures/python/medium_negative_2.json' ) ;
3736var mediumNegative5 = require ( './fixtures/python/medium_negative_5.json' ) ;
38-
3937var mediumPositive1 = require ( './fixtures/python/medium_positive_1.json' ) ;
4038var mediumPositive2 = require ( './fixtures/python/medium_positive_2.json' ) ;
4139var mediumPositive5 = require ( './fixtures/python/medium_positive_5.json' ) ;
42-
4340var smallPositive1 = require ( './fixtures/python/small_positive_1.json' ) ;
4441var smallPositive2 = require ( './fixtures/python/small_positive_2.json' ) ;
4542var smallPositive5 = require ( './fixtures/python/small_positive_5.json' ) ;
46-
4743var smallNegative1 = require ( './fixtures/python/small_negative_1.json' ) ;
4844var smallNegative2 = require ( './fixtures/python/small_negative_2.json' ) ;
4945var smallNegative5 = require ( './fixtures/python/small_negative_5.json' ) ;
50-
5146var tiny1 = require ( './fixtures/python/tiny_1.json' ) ;
5247var tiny2 = require ( './fixtures/python/tiny_2.json' ) ;
5348var tiny5 = require ( './fixtures/python/tiny_5.json' ) ;
You can’t perform that action at this time.
0 commit comments