From 85ae76b56d6dd50fce106ada8f145254d2be28d3 Mon Sep 17 00:00:00 2001 From: Nathanael Mbale <66083904+nathanaelmbale@users.noreply.github.com> Date: Tue, 26 May 2026 18:23:53 -0400 Subject: [PATCH] chore: fix JavaScript lint errors (issue #12345) --- .../@stdlib/ndarray/slice-to/test/test.js | 20 +++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/lib/node_modules/@stdlib/ndarray/slice-to/test/test.js b/lib/node_modules/@stdlib/ndarray/slice-to/test/test.js index e8821402b0f2..6131b46bbe4c 100644 --- a/lib/node_modules/@stdlib/ndarray/slice-to/test/test.js +++ b/lib/node_modules/@stdlib/ndarray/slice-to/test/test.js @@ -634,11 +634,11 @@ tape( 'in non-strict mode, the function returns an empty array when an ending in var i; values = [ - zeros( [ 1 ], { 'dtype': 'float64' } ), - zeros( [ 1, 1 ], { 'dtype': 'float32' } ), - zeros( [ 1, 1, 1 ], { 'dtype': 'int32' } ), - zeros( [ 1, 1, 1, 1 ], { 'dtype': 'uint32' } ), - zeros( [ 1, 1, 1, 1, 1 ], { 'dtype': 'complex128' } ) + zeros( [1], { 'dtype': 'float64' } ), + zeros( [1, 1], { 'dtype': 'float32' } ), + zeros( [1, 1, 1], { 'dtype': 'int32' } ), + zeros( [1, 1, 1, 1], { 'dtype': 'uint32' } ), + zeros( [1, 1, 1, 1, 1], { 'dtype': 'complex128' } ) ]; stop = [ @@ -666,11 +666,11 @@ tape( 'the function returns an empty array when an ending index is the first ele var i; values = [ - zeros( [ 1 ], { 'dtype': 'float64' } ), - zeros( [ 1, 1 ], { 'dtype': 'float32' } ), - zeros( [ 1, 1, 1 ], { 'dtype': 'int32' } ), - zeros( [ 1, 1, 1, 1 ], { 'dtype': 'uint32' } ), - zeros( [ 1, 1, 1, 1, 1 ], { 'dtype': 'complex128' } ) + zeros( [1], { 'dtype': 'float64' } ), + zeros( [1, 1], { 'dtype': 'float32' } ), + zeros( [1, 1, 1], { 'dtype': 'int32' } ), + zeros( [1, 1, 1, 1], { 'dtype': 'uint32' } ), + zeros( [1, 1, 1, 1, 1], { 'dtype': 'complex128' } ) ]; stop = [