@@ -114,8 +114,7 @@ tape( 'the function throws an error if provided an options argument which is not
114
114
true ,
115
115
false ,
116
116
null ,
117
- void 0 ,
118
- function noop ( ) { }
117
+ void 0
119
118
] ;
120
119
for ( i = 0 ; i < values . length ; i ++ ) {
121
120
t . throws ( badValue ( values [ i ] ) , TypeError , 'throws an error when provided ' + values [ i ] ) ;
@@ -282,7 +281,7 @@ tape( 'the function supports specifying the callback execution context (row-majo
282
281
t . deepEqual ( getShape ( y ) , [ 8 ] , 'returns expected value' ) ;
283
282
t . strictEqual ( getDType ( y ) , dt , 'returns expected value' ) ;
284
283
t . strictEqual ( getOrder ( y ) , 'row-major' , 'returns expected value' ) ;
285
- t . strictEqual ( ctx . count , 8 , 'returns expected value' ) ;
284
+ t . strictEqual ( ctx . count , 9 , 'returns expected value' ) ;
286
285
287
286
t . end ( ) ;
288
287
@@ -427,7 +426,7 @@ tape( 'the function supports specifying the callback execution context (column-m
427
426
t . deepEqual ( getShape ( y ) , [ 8 ] , 'returns expected value' ) ;
428
427
t . strictEqual ( getDType ( y ) , dt , 'returns expected value' ) ;
429
428
t . strictEqual ( getOrder ( y ) , 'row-major' , 'returns expected value' ) ;
430
- t . strictEqual ( ctx . count , 8 , 'returns expected value' ) ;
429
+ t . strictEqual ( ctx . count , 9 , 'returns expected value' ) ;
431
430
432
431
t . end ( ) ;
433
432
0 commit comments