Skip to content

Commit 4f93dbd

Browse files
committed
Auto-generated commit
1 parent 0b583df commit 4f93dbd

File tree

2 files changed

+6
-7
lines changed

2 files changed

+6
-7
lines changed

CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -386,6 +386,8 @@ A total of 15 issues were closed in this release:
386386

387387
<details>
388388

389+
- [`c1805ef`](https://github.com/stdlib-js/stdlib/commit/c1805eface6e530b09bfc77c800b249e6b321b2c) - **test:** fix broken tests _(by Athan Reines)_
390+
- [`7ac3d7d`](https://github.com/stdlib-js/stdlib/commit/7ac3d7d0dbf2202eb1b1494ea91825fb46725df4) - **test:** remove console statements _(by Athan Reines)_
389391
- [`f3198d2`](https://github.com/stdlib-js/stdlib/commit/f3198d2c29a5832a62b5438ea293af2d84006151) - **temp:** add console statements to debug on CI _(by Athan Reines)_
390392
- [`a4f78ea`](https://github.com/stdlib-js/stdlib/commit/a4f78ea79e24bab68ce4f3381c8bc9fb685bd002) - **fix:** account for loop tiling when generating list of indices _(by Athan Reines)_
391393
- [`e9070c8`](https://github.com/stdlib-js/stdlib/commit/e9070c86a713054a38eb6ae7ec330049c20b961c) - **docs:** update copy _(by Athan Reines)_

for-each/test/test.js

+4-7
Original file line numberDiff line numberDiff line change
@@ -193,17 +193,14 @@ tape( 'the function applies a callback to each indexed element in the input ndar
193193

194194
forEach( x, scale );
195195
expected = ones( x.length*2, dt );
196-
dfill.ndarray( x.length, 100.0, expected, st[2], expected.length/2 );
196+
dfill.ndarray( x.length, 100.0, expected, st[2], 0 );
197197

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

202200
t.end();
203201

204202
function scale( v, i ) {
205-
console.log( sh, i );
206-
x.set( i[0], i[1], i[2], v*10.0 );
203+
x.set( i[0], i[1], i[2], v*100.0 );
207204
}
208205
});
209206

@@ -229,14 +226,14 @@ tape( 'the function applies a callback to each indexed element in the input ndar
229226

230227
forEach( x, scale );
231228
expected = ones( x.length*2, dt );
232-
dfill.ndarray( x.length, 100.0, expected, st[0], expected.length/2 );
229+
dfill.ndarray( x.length, 100.0, expected, st[0], 0 );
233230

234231
t.strictEqual( isSameFloat64Array( x.data, expected ), true, 'returns expected value' );
235232

236233
t.end();
237234

238235
function scale( v, i ) {
239-
x.set( i[0], i[1], i[2], v*10.0 );
236+
x.set( i[0], i[1], i[2], v*100.0 );
240237
}
241238
});
242239

0 commit comments

Comments
 (0)