Skip to content

Commit 610103f

Browse files
committed
Fix test values
1 parent 421e2cd commit 610103f

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

lib/node_modules/@stdlib/strided/dispatch/test/test.three_arrays.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ tape( 'the function returns a function which throws an error if not provided a s
9494
strided = dispatch( binary, types, data, 10, 2, 1 );
9595

9696
values = [
97-
'5',
97+
5,
9898
3.14,
9999
NaN,
100100
true,
@@ -211,7 +211,7 @@ tape( 'the function returns a function which throws an error if not provided a s
211211
strided = dispatch( binary, types, data, 10, 2, 1 );
212212

213213
values = [
214-
'5',
214+
5,
215215
3.14,
216216
NaN,
217217
true,
@@ -328,7 +328,7 @@ tape( 'the function returns a function which throws an error if not provided a s
328328
strided = dispatch( binary, types, data, 10, 2, 1 );
329329

330330
values = [
331-
'5',
331+
5,
332332
3.14,
333333
NaN,
334334
true,

lib/node_modules/@stdlib/strided/dispatch/test/test.three_arrays.offsets.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ tape( 'the function returns a function which throws an error if not provided a s
9494
strided = dispatch( binary, types, data, 13, 2, 1 );
9595

9696
values = [
97-
'5',
97+
5,
9898
3.14,
9999
NaN,
100100
true,
@@ -251,7 +251,7 @@ tape( 'the function returns a function which throws an error if not provided a s
251251
strided = dispatch( binary, types, data, 13, 2, 1 );
252252

253253
values = [
254-
'5',
254+
5,
255255
-5,
256256
3.14,
257257
NaN,
@@ -409,7 +409,7 @@ tape( 'the function returns a function which throws an error if not provided a s
409409
strided = dispatch( binary, types, data, 13, 2, 1 );
410410

411411
values = [
412-
'5',
412+
5,
413413
-5,
414414
3.14,
415415
NaN,

lib/node_modules/@stdlib/strided/dispatch/test/test.two_arrays.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ tape( 'the function returns a function which throws an error if not provided a s
9393
strided = dispatch( unary, types, data, 7, 1, 1 );
9494

9595
values = [
96-
'5',
96+
5,
9797
3.14,
9898
NaN,
9999
true,
@@ -207,7 +207,7 @@ tape( 'the function returns a function which throws an error if not provided a s
207207
strided = dispatch( unary, types, data, 7, 1, 1 );
208208

209209
values = [
210-
'5',
210+
5,
211211
3.14,
212212
NaN,
213213
true,

lib/node_modules/@stdlib/strided/dispatch/test/test.two_arrays.offsets.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ tape( 'the function returns a function which throws an error if not provided a s
9393
strided = dispatch( unary, types, data, 9, 1, 1 );
9494

9595
values = [
96-
'5',
96+
5,
9797
3.14,
9898
NaN,
9999
true,
@@ -246,7 +246,7 @@ tape( 'the function returns a function which throws an error if not provided a s
246246
strided = dispatch( unary, types, data, 9, 1, 1 );
247247

248248
values = [
249-
'5',
249+
5,
250250
-5,
251251
3.14,
252252
NaN,

0 commit comments

Comments
 (0)