File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -404,6 +404,8 @@ A total of 15 issues were closed in this release:
404
404
405
405
<details >
406
406
407
+ - [ ` d002f3a ` ] ( https://github.com/stdlib-js/stdlib/commit/d002f3ae7d4f785a0d0d8c4c9f3b383776deea15 ) - ** bench:** fix condition _ (by Athan Reines)_
408
+ - [ ` 468d6f7 ` ] ( https://github.com/stdlib-js/stdlib/commit/468d6f7247367a32f73738a0cf7dfda28126eac2 ) - ** bench:** fix assertion _ (by Athan Reines)_
407
409
- [ ` 54dc71e ` ] ( https://github.com/stdlib-js/stdlib/commit/54dc71e0ff4a2b5661d48a1bdee584507f66373f ) - ** feat:** add ` every ` and ` includes ` to namespace _ (by Athan Reines)_
408
410
- [ ` 2349a6e ` ] ( https://github.com/stdlib-js/stdlib/commit/2349a6edf849f8f7093a77bbdeb2fdd7d9955f89 ) - ** feat:** add ` vector ` to namespace _ (by Athan Reines)_
409
411
- [ ` 1ab9f58 ` ] ( https://github.com/stdlib-js/stdlib/commit/1ab9f58bcd109f19afd9ab08212d69bfe9d32bbe ) - ** feat:** add ` ndarray/vector ` namespace _ (by Athan Reines)_
Original file line number Diff line number Diff line change @@ -35,8 +35,8 @@ bench( pkg, function benchmark( b ) {
35
35
b . tic ( ) ;
36
36
for ( i = 0 ; i < b . iterations ; i ++ ) {
37
37
out = modes ( ) ;
38
- if ( out . length !== 5 ) {
39
- b . fail ( 'should return an array of length 5 ' ) ;
38
+ if ( out . length < 2 ) {
39
+ b . fail ( 'should return an array' ) ;
40
40
}
41
41
}
42
42
b . toc ( ) ;
You can’t perform that action at this time.
0 commit comments