Skip to content

Commit 8acec19

Browse files
committed
Auto-generated commit
1 parent 38dcbb4 commit 8acec19

File tree

3 files changed

+13
-10
lines changed

3 files changed

+13
-10
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -503,6 +503,9 @@ A total of 24 issues were closed in this release:
503503

504504
<details>
505505

506+
- [`1aebcbc`](https://github.com/stdlib-js/stdlib/commit/1aebcbc907b6ab1ed9760a08edfc5704c995faa3) - **test:** fix failing tests _(by Athan Reines)_
507+
- [`45cae52`](https://github.com/stdlib-js/stdlib/commit/45cae5273df53dbddc94ef799b9b09933ea1d9f4) - **test:** fix element access _(by Athan Reines)_
508+
- [`239b567`](https://github.com/stdlib-js/stdlib/commit/239b567f8984cd6cbc0c0719fee21574ea82dac7) - **test:** fix property name _(by Athan Reines)_
506509
- [`52807fc`](https://github.com/stdlib-js/stdlib/commit/52807fce11e6cb69dc6f7e82622844eada14d232) - **refactor:** consolidate overloads _(by Athan Reines)_
507510
- [`dab9a78`](https://github.com/stdlib-js/stdlib/commit/dab9a78e04f346de096fd66b9c5129d6123aab95) - **chore:** minor clean-up _(by Philipp Burckhardt)_
508511
- [`e74334e`](https://github.com/stdlib-js/stdlib/commit/e74334e2080a9956240f376147f5d072e63e7ca0) - **feat:** add `ndarray/base/broadcast-array-except-dimensions` [(#7853)](https://github.com/stdlib-js/stdlib/pull/7853) _(by Muhammad Haris, Athan Reines)_

slice-assign/docs/repl.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@
4343
Options.
4444

4545
options.strict: boolean (optional)
46-
Boolean indicating whether to enforce strict bounds checking.
47-
Default: true.
46+
Boolean indicating whether to enforce strict bounds checking. Default:
47+
true.
4848

4949
Returns
5050
-------

slice-assign/test/test.js

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
* limitations under the License.
1717
*/
1818

19-
/* eslint-disable object-curly-newline, max-len, max-lines */
19+
/* eslint-disable object-curly-newline, max-len, max-lines, stdlib/line-closing-bracket-spacing */
2020

2121
'use strict';
2222

@@ -2678,7 +2678,7 @@ tape( 'the function supports safely casting input array elements to the data typ
26782678
[ 10, 10 ],
26792679
[ 10, 10 ],
26802680
[ 10, 10 ],
2681-
[ 10, 10, 10, 10 ],
2681+
[ 10, 0, 10, 0 ],
26822682
[ 3, 5, 3, 5 ]
26832683
];
26842684
for ( i = 0; i < expected.length; i++ ) {
@@ -2690,9 +2690,9 @@ tape( 'the function supports safely casting input array elements to the data typ
26902690
v = actual.data;
26912691
e = expected[ i ];
26922692
if ( isComplexDataType( actual.dtype ) ) {
2693-
for ( j = 0; j < v.legnth; j++ ) {
2694-
t.strictEqual( real( v[ j ] ), e[ j*2 ], 'returns expected value' );
2695-
t.strictEqual( imag( v[ j ] ), e[ (j*2)+1 ], 'returns expected value' );
2693+
for ( j = 0; j < v.length; j++ ) {
2694+
t.strictEqual( real( v.get( j ) ), e[ j*2 ], 'returns expected value' );
2695+
t.strictEqual( imag( v.get( j ) ), e[ (j*2)+1 ], 'returns expected value' );
26962696
}
26972697
} else {
26982698
for ( j = 0; j < v.length; j++ ) {
@@ -2737,9 +2737,9 @@ tape( 'the function supports downcasting floating-point input array elements to
27372737
v = actual.data;
27382738
e = expected[ i ];
27392739
if ( isComplexDataType( actual.dtype ) ) {
2740-
for ( j = 0; j < v.legnth; j++ ) {
2741-
t.strictEqual( real( v[ j ] ), e[ j*2 ], 'returns expected value' );
2742-
t.strictEqual( imag( v[ j ] ), e[ (j*2)+1 ], 'returns expected value' );
2740+
for ( j = 0; j < v.length; j++ ) {
2741+
t.strictEqual( real( v.get( j ) ), e[ j*2 ], 'returns expected value' );
2742+
t.strictEqual( imag( v.get( j ) ), e[ (j*2)+1 ], 'returns expected value' );
27432743
}
27442744
} else {
27452745
for ( j = 0; j < v.length; j++ ) {

0 commit comments

Comments
 (0)