File tree Expand file tree Collapse file tree 1 file changed +0
-2
lines changed
lib/node_modules/@stdlib/ndarray/base/nans/test Expand file tree Collapse file tree 1 file changed +0
-2
lines changed Original file line number Diff line number Diff line change @@ -221,7 +221,6 @@ tape( 'the function returns a NaN-filled array (dtype=complex64, order=column-ma
221221
222222tape ( 'the function returns a NaN-filled array (dtype=generic, order=row-major)' , function test ( t ) {
223223 var arr ;
224- var i ;
225224
226225 arr = nans ( 'generic' , [ 2 , 2 ] , 'row-major' ) ;
227226 t . strictEqual ( instanceOf ( arr , ndarray ) , true , 'returns expected value' ) ;
@@ -236,7 +235,6 @@ tape( 'the function returns a NaN-filled array (dtype=generic, order=row-major)'
236235
237236tape ( 'the function returns a NaN-filled array (dtype=generic, order=column-major)' , function test ( t ) {
238237 var arr ;
239- var i ;
240238
241239 arr = nans ( 'generic' , [ 2 , 2 ] , 'column-major' ) ;
242240 t . strictEqual ( instanceOf ( arr , ndarray ) , true , 'returns expected value' ) ;
You can’t perform that action at this time.
0 commit comments