Skip to content

Commit ffffe83

Browse files
authored
Apply suggestions from code review
Co-authored-by: Athan <kgryte@gmail.com> Signed-off-by: Athan <kgryte@gmail.com>
1 parent 939375c commit ffffe83

File tree

1 file changed

+0
-2
lines changed
  • lib/node_modules/@stdlib/ndarray/base/nans/test

1 file changed

+0
-2
lines changed

lib/node_modules/@stdlib/ndarray/base/nans/test/test.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,6 @@ tape( 'the function returns a NaN-filled array (dtype=complex64, order=column-ma
221221

222222
tape( '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

237236
tape( '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' );

0 commit comments

Comments
 (0)