Skip to content

Commit e8e86c4

Browse files
committed
Auto-generated commit
1 parent 1295129 commit e8e86c4

File tree

55 files changed

+936
-927
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

55 files changed

+936
-927
lines changed

CHANGELOG.md

Lines changed: 7 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-08-12)
7+
## Unreleased (2025-08-15)
88

99
<section class="features">
1010

@@ -246,6 +246,12 @@ A total of 32 issues were closed in this release:
246246

247247
<details>
248248

249+
- [`4535885`](https://github.com/stdlib-js/stdlib/commit/453588520ecebd68ae1c7f730ac16b206d0f0760) - **test:** fix test descriptions to use ordinal numbers correctly _(by Philipp Burckhardt)_
250+
- [`6f85067`](https://github.com/stdlib-js/stdlib/commit/6f8506775cdf2b3edf740216340ff7a0a82677dc) - **test:** fix malformed test descriptions from strictEqual migration _(by Philipp Burckhardt)_
251+
- [`7add020`](https://github.com/stdlib-js/stdlib/commit/7add0201c13e56a0381926ccfd4073c84eaf2ed4) - **test:** use standardized assertion messages and fix lint errors _(by Philipp Burckhardt)_
252+
- [`07f7c05`](https://github.com/stdlib-js/stdlib/commit/07f7c0522c73e6ad9505e1d45035ae439344200d) - **test:** use standardized assertion messages and fix lint errors _(by Philipp Burckhardt)_
253+
- [`474fc56`](https://github.com/stdlib-js/stdlib/commit/474fc56c619e734d7718b1bda3e8c76e6353e657) - **test:** fill arrays with undefined instead zero _(by Philipp Burckhardt)_
254+
- [`a147b7d`](https://github.com/stdlib-js/stdlib/commit/a147b7d6ef754925120fcc7bdec2b40842a3615a) - **test:** use .strictEqual() instead of .equal() and fix lint errors _(by Philipp Burckhardt)_
249255
- [`0f7607a`](https://github.com/stdlib-js/stdlib/commit/0f7607a1d5bc88b5ee38d5091725678eafd304f6) - **docs:** remove trailing whitespace _(by Philipp Burckhardt)_
250256
- [`8a0618b`](https://github.com/stdlib-js/stdlib/commit/8a0618bf4e79916cd2e32e9159e0299b7c1bcf34) - **style:** fix indentation in JSON files _(by Philipp Burckhardt)_
251257
- [`2c927e4`](https://github.com/stdlib-js/stdlib/commit/2c927e403da0ed8841b6ce19296262a88c9856e0) - **docs:** fix example code in TS declaration files _(by Philipp Burckhardt)_

CONTRIBUTORS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -166,6 +166,7 @@ Ruthwik Chikoti <[email protected]>
166166
Ryan Seal <[email protected]>
167167
Rylan Yang <[email protected]>
168168
SAHIL KUMAR <[email protected]>
169+
SAUJANYA MAGARDE <[email protected]>
169170
SHIVAM YADAV <[email protected]>
170171
Sachin Raj <[email protected]>
171172
Sahil Goyal <[email protected]>

base/accessor/test/test.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ tape( 'main export is a function', function test( t ) {
3636

3737
tape( 'the function is a constructor', function test( t ) {
3838
var arr = new AccessorArray( [ 1, 2, 3 ] );
39-
t.strictEqual( arr instanceof AccessorArray, true, 'returns an instance' );
39+
t.strictEqual( arr instanceof AccessorArray, true, 'returns expected value' );
4040
t.end();
4141
});
4242

@@ -47,7 +47,7 @@ tape( 'the constructor does not require the `new` keyword', function test( t ) {
4747
ctor = AccessorArray;
4848

4949
arr = ctor( [ 1, 2, 3 ] );
50-
t.strictEqual( arr instanceof AccessorArray, true, 'returns an instance' );
50+
t.strictEqual( arr instanceof AccessorArray, true, 'returns expected value' );
5151

5252
t.end();
5353
});

base/assert/test/test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,6 @@ tape( 'main export is an object', function test( t ) {
3535

3636
tape( 'the exported object contains key-value pairs', function test( t ) {
3737
var keys = objectKeys( ns );
38-
t.equal( keys.length > 0, true, 'has keys' );
38+
t.strictEqual( keys.length > 0, true, 'has keys' );
3939
t.end();
4040
});

base/banded/test/test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,6 @@ tape( 'main export is an object', function test( t ) {
3535

3636
tape( 'the exported object contains key-value pairs', function test( t ) {
3737
var keys = objectKeys( ns );
38-
t.equal( keys.length > 0, true, 'returns expected value' );
38+
t.strictEqual( keys.length > 0, true, 'returns expected value' );
3939
t.end();
4040
});

base/binary4d/test/test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ tape( 'the function does not invoke a provided callback if provided a shape havi
221221
}
222222
});
223223

224-
tape( 'the function does not invoke a provided callback if provided a shape having a four element equal to zero', function test( t ) {
224+
tape( 'the function does not invoke a provided callback if provided a shape having a fourth element equal to zero', function test( t ) {
225225
var expected;
226226
var shape;
227227
var x;

base/binary5d/test/test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ tape( 'the function does not invoke a provided callback if provided a shape havi
239239
}
240240
});
241241

242-
tape( 'the function does not invoke a provided callback if provided a shape having a four element equal to zero', function test( t ) {
242+
tape( 'the function does not invoke a provided callback if provided a shape having a fourth element equal to zero', function test( t ) {
243243
var expected;
244244
var shape;
245245
var x;

base/broadcasted-binary4d/test/test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,7 @@ tape( 'the function does not invoke a provided callback if provided an output sh
296296
}
297297
});
298298

299-
tape( 'the function does not invoke a provided callback if provided an output shape having a four element equal to zero', function test( t ) {
299+
tape( 'the function does not invoke a provided callback if provided an output shape having a fourth element equal to zero', function test( t ) {
300300
var expected;
301301
var shapes;
302302
var x;

base/broadcasted-binary5d/test/test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -356,7 +356,7 @@ tape( 'the function does not invoke a provided callback if provided an output sh
356356
}
357357
});
358358

359-
tape( 'the function does not invoke a provided callback if provided an output shape having a four element equal to zero', function test( t ) {
359+
tape( 'the function does not invoke a provided callback if provided an output shape having a fourth element equal to zero', function test( t ) {
360360
var expected;
361361
var shapes;
362362
var x;

base/first/test/test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ tape( 'the function returns the first element of an array-like object', function
4444
expected = 1;
4545
actual = first( x );
4646

47-
t.equal( actual, expected, 'returns expected value' );
47+
t.strictEqual( actual, expected, 'returns expected value' );
4848
t.end();
4949
});
5050

0 commit comments

Comments
 (0)