Skip to content

Commit ada2e00

Browse files
committed
Auto-generated commit
1 parent 75c7d94 commit ada2e00

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
<section class="release" id="unreleased">
66

7-
## Unreleased (2025-06-06)
7+
## Unreleased (2025-06-07)
88

99
<section class="features">
1010

@@ -34,6 +34,7 @@ This release closes the following issue:
3434

3535
<details>
3636

37+
- [`ff270d8`](https://github.com/stdlib-js/stdlib/commit/ff270d8654df4dfd397c638ed2d16b2925f979f1) - **test:** fix missing function argument _(by Athan Reines)_
3738
- [`2db7567`](https://github.com/stdlib-js/stdlib/commit/2db75670d43471c0f502e46d2564582add3d6135) - **refactor:** update paths _(by Gururaj Gurram)_
3839
- [`ac88117`](https://github.com/stdlib-js/stdlib/commit/ac88117e8045b917e287f3c3f8a5e5f313ae5ee6) - **docs:** update related packages sections [(#6436)](https://github.com/stdlib-js/stdlib/pull/6436) _(by stdlib-bot, Athan Reines)_
3940
- [`4548d65`](https://github.com/stdlib-js/stdlib/commit/4548d65de8cbbe60014b40380cc068d891d04bb3) - **feat:** add accessor protocol and refactor `stats/base/nanmskrange` [(#6295)](https://github.com/stdlib-js/stdlib/pull/6295) _(by Rahul Kumar, Athan Reines)_

test/test.ndarray.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ tape( 'if provided an `N` parameter less than or equal to `0`, the function retu
167167
v = nanmskrange( 0, x, 1, 0, mask, 1, 0 );
168168
t.strictEqual( isnan( v ), true, 'returns expected value' );
169169

170-
v = nanmskrange( -1, x, 1, 0, mask, 1 );
170+
v = nanmskrange( -1, x, 1, 0, mask, 1, 0 );
171171
t.strictEqual( isnan( v ), true, 'returns expected value' );
172172

173173
t.end();

0 commit comments

Comments
 (0)