From fad77ea46d1fb7d06b2a54d9688e95f0cdd56f65 Mon Sep 17 00:00:00 2001 From: anujmishra03 Date: Mon, 3 Nov 2025 13:39:26 +0530 Subject: [PATCH 1/3] fix: remove extra bracket spacing in test.isamax.js (#8357) --- .../@stdlib/blas/base/isamax/test/test.isamax.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/lib/node_modules/@stdlib/blas/base/isamax/test/test.isamax.js b/lib/node_modules/@stdlib/blas/base/isamax/test/test.isamax.js index 19ad51ceae1b..92b20cee6dc6 100644 --- a/lib/node_modules/@stdlib/blas/base/isamax/test/test.isamax.js +++ b/lib/node_modules/@stdlib/blas/base/isamax/test/test.isamax.js @@ -52,18 +52,18 @@ tape( 'the function finds the index of the element with the maximum absolute val 6.0, 6.0 ]); - expected = 2; + expected = 2; idx = isamax( 4, x, 1 ); t.strictEqual( idx, expected, 'returns expected value' ); - x = new Float32Array( [ + x = new Float32Array([ 0.2, // 1 -0.6, // 2 0.3, // 3 5.0, 5.0 - ] ); + ]); expected = 1; idx = isamax( 3, x, 1 ); @@ -77,11 +77,11 @@ tape( 'if provided an `N` parameter less than `1`, the function returns `-1`', f var idx; var x; - x = new Float32Array( [ + x = new Float32Array([ 1.0, 2.0, 3.0 - ] ); + ]); expected = -1; idx = isamax( 0, x, 1 ); From 98ac26e7e07b3e151227f512b8142ad167b58914 Mon Sep 17 00:00:00 2001 From: anujmishra03 Date: Mon, 3 Nov 2025 13:50:03 +0530 Subject: [PATCH 2/3] trigger CI From 338d5dcbdd497253050eebd213339be81a334b40 Mon Sep 17 00:00:00 2001 From: Athan Date: Mon, 3 Nov 2025 01:49:04 -0800 Subject: [PATCH 3/3] style: remove whitespace Signed-off-by: Athan --- lib/node_modules/@stdlib/blas/base/isamax/test/test.isamax.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/node_modules/@stdlib/blas/base/isamax/test/test.isamax.js b/lib/node_modules/@stdlib/blas/base/isamax/test/test.isamax.js index 92b20cee6dc6..b60e99fc38e6 100644 --- a/lib/node_modules/@stdlib/blas/base/isamax/test/test.isamax.js +++ b/lib/node_modules/@stdlib/blas/base/isamax/test/test.isamax.js @@ -52,7 +52,7 @@ tape( 'the function finds the index of the element with the maximum absolute val 6.0, 6.0 ]); - expected = 2; + expected = 2; idx = isamax( 4, x, 1 ); t.strictEqual( idx, expected, 'returns expected value' );