Skip to content

Commit a85501f

Browse files
committed
Auto-generated commit
1 parent 7c1f849 commit a85501f

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -257,6 +257,7 @@ A total of 33 issues were closed in this release:
257257

258258
<details>
259259

260+
- [`cb96e8f`](https://github.com/stdlib-js/stdlib/commit/cb96e8f86be54682f17fc6a4f47338aea2ad30a9) - **bench:** refactor to use string interpolation in `array/base/assert/has-equal-values-indexed` [(#8846)](https://github.com/stdlib-js/stdlib/pull/8846) _(by ashutoshsao)_
260261
- [`7764a25`](https://github.com/stdlib-js/stdlib/commit/7764a25a72cab240473982486844795e42787673) - **bench:** refactor to use string interpolation in `array/base/bifurcate-indices-by` [(#8850)](https://github.com/stdlib-js/stdlib/pull/8850) _(by ashutoshsao)_
261262
- [`e7f3da3`](https://github.com/stdlib-js/stdlib/commit/e7f3da39694b2faadcf4204b9e772fe40d57f506) - **bench:** refactor to use string interpolation in `array/base/fliplr2d` [(#8857)](https://github.com/stdlib-js/stdlib/pull/8857) _(by Ullas)_
262263
- [`9836337`](https://github.com/stdlib-js/stdlib/commit/9836337952ec885367411bbea26d393aff18aef1) - **bench:** refactor to use string interpolation in `array/base/bifurcate-indices` [(#8851)](https://github.com/stdlib-js/stdlib/pull/8851) _(by ashutoshsao)_

base/assert/has-equal-values-indexed/benchmark/benchmark.length.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ var bench = require( '@stdlib/bench' );
2424
var pow = require( '@stdlib/math/base/special/pow' );
2525
var isBoolean = require( '@stdlib/assert/is-boolean' ).isPrimitive;
2626
var zeros = require( './../../../../base/zeros' );
27+
var format = require( '@stdlib/string/format' );
2728
var pkg = require( './../package.json' ).name;
2829
var hasEqualValuesIndexed = require( './../lib' );
2930

@@ -89,7 +90,7 @@ function main() {
8990
len = pow( 10, i );
9091

9192
f = createBenchmark( len );
92-
bench( pkg+':dtype=generic,len='+len, f );
93+
bench( format( '%s:dtype=generic,len=%d', pkg, len ), f );
9394
}
9495
}
9596

0 commit comments

Comments
 (0)