@@ -38,7 +38,7 @@ tape( 'main export is a function', function test( t ) {
3838 t . end ( ) ;
3939} ) ;
4040
41- tape ( 'the function returns an array containing ndarrays (ndims=1, strict, readonly)' , function test ( t ) {
41+ tape ( 'the function returns an array containing ndarrays (ndims=1, readonly)' , function test ( t ) {
4242 var actual ;
4343 var buf ;
4444 var ord ;
@@ -55,7 +55,7 @@ tape( 'the function returns an array containing ndarrays (ndims=1, strict, reado
5555
5656 x = new ctor ( 'float64' , buf , sh , st , o , ord ) ;
5757
58- actual = shift ( x , 0 , true , false ) ;
58+ actual = shift ( x , 0 , false ) ;
5959
6060 t . strictEqual ( isndarrayLike ( actual [ 0 ] ) , true , 'returns expected value' ) ;
6161 t . strictEqual ( isndarrayLike ( actual [ 1 ] ) , true , 'returns expected value' ) ;
@@ -71,7 +71,7 @@ tape( 'the function returns an array containing ndarrays (ndims=1, strict, reado
7171 t . end ( ) ;
7272} ) ;
7373
74- tape ( 'the function returns an array containing ndarrays (ndims=1, strict, writable)' , function test ( t ) {
74+ tape ( 'the function returns an array containing ndarrays (ndims=1, writable)' , function test ( t ) {
7575 var actual ;
7676 var buf ;
7777 var ord ;
@@ -88,7 +88,7 @@ tape( 'the function returns an array containing ndarrays (ndims=1, strict, writa
8888
8989 x = new ctor ( 'float64' , buf , sh , st , o , ord ) ;
9090
91- actual = shift ( x , 0 , true , true ) ;
91+ actual = shift ( x , 0 , true ) ;
9292
9393 t . strictEqual ( isndarrayLike ( actual [ 0 ] ) , true , 'returns expected value' ) ;
9494 t . strictEqual ( isndarrayLike ( actual [ 1 ] ) , true , 'returns expected value' ) ;
@@ -104,7 +104,7 @@ tape( 'the function returns an array containing ndarrays (ndims=1, strict, writa
104104 t . end ( ) ;
105105} ) ;
106106
107- tape ( 'the function returns an array containing ndarrays (ndims=2, strict, readonly)' , function test ( t ) {
107+ tape ( 'the function returns an array containing ndarrays (ndims=2, readonly)' , function test ( t ) {
108108 var actual ;
109109 var buf ;
110110 var ord ;
@@ -121,7 +121,7 @@ tape( 'the function returns an array containing ndarrays (ndims=2, strict, reado
121121
122122 x = new ctor ( 'float64' , buf , sh , st , o , ord ) ;
123123
124- actual = shift ( x , 0 , true , false ) ;
124+ actual = shift ( x , 0 , false ) ;
125125
126126 t . strictEqual ( isndarrayLike ( actual [ 0 ] ) , true , 'returns expected value' ) ;
127127 t . strictEqual ( isndarrayLike ( actual [ 1 ] ) , true , 'returns expected value' ) ;
@@ -137,7 +137,7 @@ tape( 'the function returns an array containing ndarrays (ndims=2, strict, reado
137137 t . end ( ) ;
138138} ) ;
139139
140- tape ( 'the function returns an array containing ndarrays (ndims=2, strict, writable)' , function test ( t ) {
140+ tape ( 'the function returns an array containing ndarrays (ndims=2, writable)' , function test ( t ) {
141141 var actual ;
142142 var buf ;
143143 var ord ;
@@ -154,7 +154,7 @@ tape( 'the function returns an array containing ndarrays (ndims=2, strict, writa
154154
155155 x = new ctor ( 'float64' , buf , sh , st , o , ord ) ;
156156
157- actual = shift ( x , 0 , true , true ) ;
157+ actual = shift ( x , 0 , true ) ;
158158
159159 t . strictEqual ( isndarrayLike ( actual [ 0 ] ) , true , 'returns expected value' ) ;
160160 t . strictEqual ( isndarrayLike ( actual [ 1 ] ) , true , 'returns expected value' ) ;
@@ -170,7 +170,7 @@ tape( 'the function returns an array containing ndarrays (ndims=2, strict, writa
170170 t . end ( ) ;
171171} ) ;
172172
173- tape ( 'the function returns an array containing ndarrays (ndims=3, strict, readonly)' , function test ( t ) {
173+ tape ( 'the function returns an array containing ndarrays (ndims=3, readonly)' , function test ( t ) {
174174 var actual ;
175175 var buf ;
176176 var ord ;
@@ -199,7 +199,7 @@ tape( 'the function returns an array containing ndarrays (ndims=3, strict, reado
199199 */
200200 x = new ctor ( 'float64' , buf , sh , st , o , ord ) ;
201201
202- actual = shift ( x , 1 , true , false ) ;
202+ actual = shift ( x , 1 , false ) ;
203203
204204 t . strictEqual ( isndarrayLike ( actual [ 0 ] ) , true , 'returns expected value' ) ;
205205 t . strictEqual ( isndarrayLike ( actual [ 1 ] ) , true , 'returns expected value' ) ;
@@ -215,7 +215,7 @@ tape( 'the function returns an array containing ndarrays (ndims=3, strict, reado
215215 t . end ( ) ;
216216} ) ;
217217
218- tape ( 'the function returns an array containing ndarrays (ndims=3, strict, writable)' , function test ( t ) {
218+ tape ( 'the function returns an array containing ndarrays (ndims=3, writable)' , function test ( t ) {
219219 var actual ;
220220 var buf ;
221221 var ord ;
@@ -244,7 +244,7 @@ tape( 'the function returns an array containing ndarrays (ndims=3, strict, writa
244244 */
245245 x = new ctor ( 'float64' , buf , sh , st , o , ord ) ;
246246
247- actual = shift ( x , 1 , true , true ) ;
247+ actual = shift ( x , 1 , true ) ;
248248
249249 t . strictEqual ( isndarrayLike ( actual [ 0 ] ) , true , 'returns expected value' ) ;
250250 t . strictEqual ( isndarrayLike ( actual [ 1 ] ) , true , 'returns expected value' ) ;
0 commit comments