Skip to content

Commit 0bdcad8

Browse files
committed
feat: Lint Fix3
1 parent 5056468 commit 0bdcad8

1 file changed

Lines changed: 6 additions & 12 deletions

File tree

  • lib/node_modules/@stdlib/stats/base/ndarray/smskmin/test

lib/node_modules/@stdlib/stats/base/ndarray/smskmin/test/test.js

Lines changed: 6 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -151,8 +151,7 @@ tape( 'the function supports one-dimensional ndarrays having non-unit strides',
151151
var x;
152152
var v;
153153

154-
x = new Float32Array( [
155-
1.0, // 0
154+
x = new Float32Array( [ 1.0, // 0
156155
2.0,
157156
2.0, // 1
158157
-7.0,
@@ -163,8 +162,7 @@ tape( 'the function supports one-dimensional ndarrays having non-unit strides',
163162
5.0, // 4
164163
6.0
165164
]);
166-
mask = new Uint8Array( [
167-
0, // 0
165+
mask = new Uint8Array( [ 0, // 0
168166
0,
169167
0, // 1
170168
0,
@@ -186,8 +184,7 @@ tape( 'the function supports one-dimensional ndarrays having negative strides',
186184
var x;
187185
var v;
188186

189-
x = new Float32Array( [
190-
5.0, // 4
187+
x = new Float32Array( [ 5.0, // 4
191188
6.0,
192189
1.0, // 3
193190
2.0,
@@ -198,8 +195,7 @@ tape( 'the function supports one-dimensional ndarrays having negative strides',
198195
4.0, // 0
199196
2.0
200197
]);
201-
mask = new Uint8Array( [
202-
1, // 4
198+
mask = new Uint8Array( [ 1, // 4
203199
1,
204200
0, // 3
205201
0,
@@ -221,8 +217,7 @@ tape( 'the function supports one-dimensional ndarrays having non-zero offsets',
221217
var x;
222218
var v;
223219

224-
x = new Float32Array( [
225-
2.0,
220+
x = new Float32Array( [ 2.0,
226221
1.0, // 0
227222
2.0,
228223
-2.0, // 1
@@ -233,8 +228,7 @@ tape( 'the function supports one-dimensional ndarrays having non-zero offsets',
233228
5.0,
234229
6.0 // 4
235230
]);
236-
mask = new Uint8Array( [
237-
0,
231+
mask = new Uint8Array( [ 0,
238232
0, // 0
239233
0,
240234
0, // 1

0 commit comments

Comments
 (0)