Skip to content

Commit 0b583df

Browse files
committed
Auto-generated commit
1 parent dbedb05 commit 0b583df

2 files changed

Lines changed: 4 additions & 0 deletions

File tree

CHANGELOG.md

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

387387
<details>
388388

389+
- [`f3198d2`](https://github.com/stdlib-js/stdlib/commit/f3198d2c29a5832a62b5438ea293af2d84006151) - **temp:** add console statements to debug on CI _(by Athan Reines)_
389390
- [`a4f78ea`](https://github.com/stdlib-js/stdlib/commit/a4f78ea79e24bab68ce4f3381c8bc9fb685bd002) - **fix:** account for loop tiling when generating list of indices _(by Athan Reines)_
390391
- [`e9070c8`](https://github.com/stdlib-js/stdlib/commit/e9070c86a713054a38eb6ae7ec330049c20b961c) - **docs:** update copy _(by Athan Reines)_
391392
- [`7836149`](https://github.com/stdlib-js/stdlib/commit/78361499b7549bcca311892843d538d65c54a22d) - **docs:** add note and update copy _(by Athan Reines)_

for-each/test/test.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -196,10 +196,13 @@ tape( 'the function applies a callback to each indexed element in the input ndar
196196
dfill.ndarray( x.length, 100.0, expected, st[2], expected.length/2 );
197197

198198
t.strictEqual( isSameFloat64Array( x.data, expected ), true, 'returns expected value' );
199+
console.log( x.data );
200+
console.log( expected );
199201

200202
t.end();
201203

202204
function scale( v, i ) {
205+
console.log( sh, i );
203206
x.set( i[0], i[1], i[2], v*10.0 );
204207
}
205208
});

0 commit comments

Comments
 (0)