Skip to content

Commit 02d61b6

Browse files
committed
Auto-generated commit
1 parent e5e1729 commit 02d61b6

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
@@ -157,6 +157,7 @@ A total of 34 issues were closed in this release:
157157

158158
<details>
159159

160+
- [`9342bfc`](https://github.com/stdlib-js/stdlib/commit/9342bfcbac1f1b266884212947f2c4140cb82fa9) - **bench:** refactor to use string interpolation in `assert/is-almost-equal-array` [(#9875)](https://github.com/stdlib-js/stdlib/pull/9875) _(by Sagar Ratna Chaudhary)_
160161
- [`b0d9263`](https://github.com/stdlib-js/stdlib/commit/b0d926308b169cdf980b88bf60055b1ad4853cd2) - **bench:** refactor to use string interpolation in `assert/is-almost-equal-float64array` [(#9878)](https://github.com/stdlib-js/stdlib/pull/9878) _(by Sagar Ratna Chaudhary)_
161162
- [`5439372`](https://github.com/stdlib-js/stdlib/commit/54393723510567614137ca86403213c39c407559) - **bench:** refactor to use string interpolation in `assert/is-almost-equal-complex128array` [(#9876)](https://github.com/stdlib-js/stdlib/pull/9876) _(by Sagar Ratna Chaudhary)_
162163
- [`6e21629`](https://github.com/stdlib-js/stdlib/commit/6e21629c4064ea16b800fa43138c6c70debc0039) - **bench:** refactor to use string interpolation in `assert/is-almost-equal-float32array` [(#9877)](https://github.com/stdlib-js/stdlib/pull/9877) _(by Sagar Ratna Chaudhary)_

is-almost-equal-array/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 isBoolean = require( './../../is-boolean' ).isPrimitive;
2525
var pow = require( '@stdlib/math/base/special/pow' );
2626
var zeroTo = require( '@stdlib/array/base/zero-to' );
27+
var format = require( '@stdlib/string/format' );
2728
var pkg = require( './../package.json' ).name;
2829
var isAlmostEqualArray = require( './../lib' );
2930

@@ -89,7 +90,7 @@ function main() {
8990
for ( i = min; i <= max; i++ ) {
9091
len = pow( 10, i );
9192
f = createBenchmark( len );
92-
bench( pkg+':len='+len, f );
93+
bench( format( '%s:len=%d', pkg, len ), f );
9394
}
9495
}
9596

0 commit comments

Comments
 (0)