Skip to content

Commit 99a477a

Browse files
committed
Auto-generated commit
1 parent 1c7ae78 commit 99a477a

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

CHANGELOG.md

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

502502
<details>
503503

504+
- [`8e907f0`](https://github.com/stdlib-js/stdlib/commit/8e907f03fee0f39eb4eff0e078dec5a13cce0073) - **test:** account for N * alpha in test case _(by Philipp Burckhardt)_
504505
- [`d64fbb8`](https://github.com/stdlib-js/stdlib/commit/d64fbb8c4e6c4d9b15ae11a153844903bef76115) - **test:** account for N * alpha in test case _(by Philipp Burckhardt)_
505506
- [`9452043`](https://github.com/stdlib-js/stdlib/commit/945204344168a2cc6c9d2aa29b483c35fbe933a1) - **test:** account for N * alpha in test case _(by Philipp Burckhardt)_
506507
- [`01d345a`](https://github.com/stdlib-js/stdlib/commit/01d345a6335bc1fdfeb42c0c2888378fd332e6be) - **test:** pass in missing opts for native tests _(by Philipp Burckhardt)_

ext/base/dsapxsum/test/test.dsapxsum.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ tape( 'the function adds a constant and calculates the sum of all strided array
6262

6363
x = new Float32Array( [ 1.0, 1.0e38, 1.0, -1.0e38 ] );
6464
v = dsapxsum( x.length, 5.0, x, 1 );
65-
t.strictEqual( v, 0.0, 'returns expected value' );
65+
t.strictEqual( v, 20.0, 'returns expected value' );
6666

6767
x = new Float32Array( 1e3 );
6868
for ( i = 0; i < 1e3; i++ ) {

ext/base/dsapxsum/test/test.dsapxsum.native.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ tape( 'the function adds a constant and calculates the sum of all strided array
180180

181181
x = new Float32Array( [ 1.0, 1.0e38, 1.0, -1.0e38 ] );
182182
v = dsapxsum( x.length, 5.0, x, 1 );
183-
t.strictEqual( v, 0.0, 'returns expected value' );
183+
t.strictEqual( v, 20.0, 'returns expected value' );
184184

185185
x = new Float32Array( 1e3 );
186186
for ( i = 0; i < 1e3; i++ ) {

0 commit comments

Comments
 (0)