Skip to content

Commit 49e347b

Browse files
authored
Update test.ndarray.js
Signed-off-by: Kaushikgtm <[email protected]>
1 parent 15be246 commit 49e347b

File tree

1 file changed

+16
-16
lines changed

1 file changed

+16
-16
lines changed

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

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -189,15 +189,15 @@ tape( 'the function supports a negative `stride` parameter', function test( t )
189189
var v;
190190

191191
x = [
192-
NaN, // 4
192+
NaN, // 4
193193
NaN,
194-
1.0, // 3
194+
1.0, // 3
195195
2.0,
196-
2.0, // 2
196+
2.0, // 2
197197
-7.0,
198198
-2.0, // 1
199199
3.0,
200-
4.0, // 0
200+
4.0, // 0
201201
2.0
202202
];
203203

@@ -214,15 +214,15 @@ tape( 'the function supports a negative `stride` parameter (accessors)', functio
214214
var v;
215215

216216
x = [
217-
NaN, // 4
217+
NaN, // 4
218218
NaN,
219-
1.0, // 3
219+
1.0, // 3
220220
2.0,
221-
2.0, // 2
221+
2.0, // 2
222222
-7.0,
223223
-2.0, // 1
224224
3.0,
225-
4.0, // 0
225+
4.0, // 0
226226
2.0
227227
];
228228

@@ -264,15 +264,15 @@ tape( 'the function supports an `offset` parameter', function test( t ) {
264264

265265
x = [
266266
2.0,
267-
1.0, // 0
267+
1.0, // 0
268268
2.0,
269269
-2.0, // 1
270270
-2.0,
271-
2.0, // 2
271+
2.0, // 2
272272
3.0,
273-
4.0, // 3
273+
4.0, // 3
274274
NaN,
275-
NaN // 4
275+
NaN // 4
276276
];
277277
N = floor( x.length / 2 );
278278

@@ -289,15 +289,15 @@ tape( 'the function supports an `offset` parameter (accessors)', function test(
289289

290290
x = [
291291
2.0,
292-
1.0, // 0
292+
1.0, // 0
293293
2.0,
294294
-2.0, // 1
295295
-2.0,
296-
2.0, // 2
296+
2.0, // 2
297297
3.0,
298-
4.0, // 3
298+
4.0, // 3
299299
NaN,
300-
NaN // 4
300+
NaN // 4
301301
];
302302
N = floor( x.length / 2 );
303303

0 commit comments

Comments
 (0)