Skip to content

Commit 3641d6b

Browse files
committed
chore: fix JavaScript lint errors (issue #10447)
1 parent b2a8b1d commit 3641d6b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/node_modules/@stdlib/blas/base/isamax/test/test.isamax.native.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ tape( 'the function supports specifying a negative stride', opts, function test(
125125
var idx;
126126
var x;
127127

128-
x = new Float32Array( [ 3.0, -4.0, 1.0, 15.0, 4.0, 3.0 ] );
128+
x = new Float32Array([ 3.0, -4.0, 1.0, 15.0, 4.0, 3.0 ]);
129129

130130
idx = isamax( x.length, x, -1 );
131131
t.strictEqual( idx, 2, 'returns expected value' );

0 commit comments

Comments
 (0)