Skip to content

Commit 7709fc8

Browse files
committed
test: increase number of test values
1 parent 31bf779 commit 7709fc8

File tree

1 file changed

+4
-4
lines changed
  • lib/node_modules/@stdlib/array/base/at2d/test

1 file changed

+4
-4
lines changed

lib/node_modules/@stdlib/array/base/at2d/test/test.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ tape( 'the function returns a nested array element (positive indices)', function
4747
var x;
4848
var i;
4949

50-
shape = [ 2, 2 ];
50+
shape = [ 5, 5 ];
5151
x = filled2dBy( shape, discreteUniform( 0, 10 ) );
5252

5353
i0 = incrspace( 0, shape[0], 1 );
@@ -73,7 +73,7 @@ tape( 'the function returns a nested array element (negative indices)', function
7373
var x;
7474
var i;
7575

76-
shape = [ 2, 2 ];
76+
shape = [ 5, 5 ];
7777
x = filled2dBy( shape, discreteUniform( 0, 10 ) );
7878

7979
i0 = incrspace( -shape[0], 0, 1 );
@@ -99,7 +99,7 @@ tape( 'the function returns `undefined` if provided an out-of-bounds index (posi
9999
var x;
100100
var i;
101101

102-
shape = [ 2, 2 ];
102+
shape = [ 5, 5 ];
103103
x = filled2dBy( shape, discreteUniform( 0, 10 ) );
104104

105105
i0 = incrspace( shape[0], shape[0]+10, 1 );
@@ -125,7 +125,7 @@ tape( 'the function returns `undefined` if provided an out-of-bounds index (nega
125125
var x;
126126
var i;
127127

128-
shape = [ 2, 2 ];
128+
shape = [ 5, 5 ];
129129
x = filled2dBy( shape, discreteUniform( 0, 10 ) );
130130

131131
i0 = incrspace( -shape[0]-10, -shape[0], 1 );

0 commit comments

Comments
 (0)