File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
lib/node_modules/@stdlib/array/base/at2d/test Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff 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 ) ;
You can’t perform that action at this time.
0 commit comments