Skip to content

Commit 2a126f4

Browse files
committed
Auto-generated commit
1 parent e1bbbc0 commit 2a126f4

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

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

35303530
<details>
35313531

3532+
- [`d94f831`](https://github.com/stdlib-js/stdlib/commit/d94f8313eb8c0a08d2963a938c96a5f22a5f666e) - **test:** fix message _(by Athan Reines)_
35323533
- [`2ab4734`](https://github.com/stdlib-js/stdlib/commit/2ab4734984722371281d1a009fced0f6ac286777) - **chore:** clean-up _(by Athan Reines)_
35333534
- [`ffee9eb`](https://github.com/stdlib-js/stdlib/commit/ffee9eb167e2f3b1750163bf9f9937f7e9db48d3) - **feat:** add `stats/strided/mskmidrange` [(#9331)](https://github.com/stdlib-js/stdlib/pull/9331) _(by Sachin Pangal, Athan Reines)_
35343535
- [`b6b70c7`](https://github.com/stdlib-js/stdlib/commit/b6b70c7fd270b902706e1870933f97f1ae95a0e1) - **feat:** add `stats/base/ndarray/midrange` [(#9332)](https://github.com/stdlib-js/stdlib/pull/9332) _(by Sachin Pangal, Athan Reines)_

base/ndarray/stdev/test/test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ tape( 'if provided a correction argument yielding `N-correction` less than or eq
132132
correction = scalar2ndarray( 1.0, opts );
133133

134134
v = stdev( [ vector( x, 1, 1, 0 ), correction ] );
135-
t.strictEqual( isnan( v ), true, 'returns NaN' );
135+
t.strictEqual( isnan( v ), true, 'returns expected value' );
136136

137137
t.end();
138138
});

0 commit comments

Comments
 (0)