Skip to content

Commit c612a33

Browse files
committed
chore: fix JavaScript lint errors (issue #10475)
1 parent ddc8202 commit c612a33

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,13 +66,13 @@ tape( 'the function finds the index of the element with the maximum absolute val
6666
idx = isamax( 4, x, 1 );
6767
t.strictEqual( idx, expected, 'returns expected value' );
6868

69-
x = new Float32Array( [
69+
x = new Float32Array([
7070
0.2, // 1
7171
-0.6, // 2
7272
0.3, // 3
7373
5.0,
7474
5.0
75-
] );
75+
]);
7676
expected = 1;
7777

7878
idx = isamax( 3, x, 1 );

0 commit comments

Comments
 (0)