Skip to content

Commit 603575b

Browse files
committed
Auto-generated commit
1 parent 02d61b6 commit 603575b

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+
- [`ecf4b7c`](https://github.com/stdlib-js/stdlib/commit/ecf4b7c12430e95d5ea3438b003b839a55628f18) - **bench:** refactor to use string interpolation in `assert/is-almost-equal-complex64array` [(#9874)](https://github.com/stdlib-js/stdlib/pull/9874) _(by Sagar Ratna Chaudhary)_
160161
- [`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)_
161162
- [`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)_
162163
- [`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)_

is-almost-equal-complex64array/benchmark/benchmark.length.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ var isBoolean = require( './../../is-boolean' ).isPrimitive;
2525
var pow = require( '@stdlib/math/base/special/pow' );
2626
var zeroTo = require( '@stdlib/array/base/zero-to' );
2727
var Complex64Array = require( '@stdlib/array/complex64' );
28+
var format = require( '@stdlib/string/format' );
2829
var pkg = require( './../package.json' ).name;
2930
var isAlmostEqualComplex64Array = require( './../lib' );
3031

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

0 commit comments

Comments
 (0)