Skip to content

Commit 2496b91

Browse files
committed
Auto-generated commit
1 parent f0c27fe commit 2496b91

File tree

4 files changed

+9
-4
lines changed

4 files changed

+9
-4
lines changed

.github/.keepalive

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2025-08-11T01:02:53.668Z
1+
2025-09-01T00:48:24.887Z

CHANGELOG.md

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

7-
## Unreleased (2025-08-11)
7+
## Unreleased (2025-09-01)
88

99
<section class="commits">
1010

1111
### Commits
1212

1313
<details>
1414

15+
- [`11581aa`](https://github.com/stdlib-js/stdlib/commit/11581aaca8c3cb824cbb92c0c0f80e76890bdb20) - **test:** use standardized assertion messages and fix lint errors _(by Philipp Burckhardt)_
1516
- [`8a0618b`](https://github.com/stdlib-js/stdlib/commit/8a0618bf4e79916cd2e32e9159e0299b7c1bcf34) - **style:** fix indentation in JSON files _(by Philipp Burckhardt)_
1617

1718
</details>

CONTRIBUTORS

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ Abhishek G <166795493+AbhishekG-Codes@users.noreply.github.com>
1313
Abhishek Jain <40913033+abhishekblue@users.noreply.github.com>
1414
Adarsh Palaskar <adarshpalaskar99@gmail.com>
1515
Aditya Sapra <adityaework@gmail.com>
16+
Aditya Singh <adityasinghk099@gmail.com>
1617
Ahmed Atwa <Ahmedatwa866@yahoo.com>
1718
Ahmed Kashkoush <ahmedkashkoush464@gmail.com>
1819
Ahmed Khaled <kahmd1444@gmail.com>
@@ -121,6 +122,7 @@ Muhammad Haris <harriskhan047@outlook.com>
121122
Muhammad Taaha Tariq <166188821+Taaha-Tariq@users.noreply.github.com>
122123
Muhmmad Saad <106260977+saad-imran-dev@users.noreply.github.com>
123124
NEEKUorAAYUSH <aayush10072004@gmail.com>
125+
Nakul Krishnakumar <nakulkrishnakumar86@gmail.com>
124126
Naresh Jagadeesan <naresh.naresh000@gmail.com>
125127
Naveen Kumar <stupiddint@gmail.com>
126128
Neeraj Pathak <neerajrpathak710@gmail.com>
@@ -164,6 +166,7 @@ Ruthwik Chikoti <145591715+ruthwikchikoti@users.noreply.github.com>
164166
Ryan Seal <splrk@users.noreply.github.com>
165167
Rylan Yang <137365285+rylany27@users.noreply.github.com>
166168
SAHIL KUMAR <168997976+sahilk45@users.noreply.github.com>
169+
SAUJANYA MAGARDE <162047941+SaujanyaMagarde@users.noreply.github.com>
167170
SHIVAM YADAV <120725381+Shivam-1827@users.noreply.github.com>
168171
Sachin Raj <120590207+schnrj@users.noreply.github.com>
169172
Sahil Goyal <87982509+sahil20021008@users.noreply.github.com>
@@ -186,6 +189,7 @@ Sivam Das <100067002+Sivam2313@users.noreply.github.com>
186189
Snehil Shah <snehilshah.989@gmail.com>
187190
Soumajit Chatterjee <121816890+soumajit23@users.noreply.github.com>
188191
Spandan Barve <contact@marsian.dev>
192+
Srinivas Batthula <srinivasbatthula05.official@gmail.com>
189193
Stephannie Jiménez Gacha <steff456@hotmail.com>
190194
Suhaib Ilahi <suhaib.elahi87@gmail.com>
191195
Suraj Kumar <125961509+kumarsuraj212003@users.noreply.github.com>

test/test.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ tape( 'the function returns `true` if provided a complex typed array from a diff
114114
'require': require
115115
};
116116
arr = vm.runInNewContext( 'new ( require( "@stdlib/array/complex64" ) )( [ 5.0, 3.0 ] )', ctx );
117-
t.strictEqual( isComplexTypedArray( arr ), true, 'returns true' );
117+
t.strictEqual( isComplexTypedArray( arr ), true, 'returns expected value' );
118118

119119
t.end();
120120
});
@@ -128,7 +128,7 @@ tape( 'the function returns `true` if provided an object from a different realm
128128
'require': require
129129
};
130130
arr = vm.runInNewContext( 'function Arr() { return this; }; Arr.prototype = Object.create( require( "@stdlib/array/complex64" ).prototype ); Arr.prototype.constructor = Arr; new Arr( [ 5.0, 3.0 ] );', ctx );
131-
t.strictEqual( isComplexTypedArray( arr ), true, 'returns true' );
131+
t.strictEqual( isComplexTypedArray( arr ), true, 'returns expected value' );
132132

133133
t.end();
134134
});

0 commit comments

Comments
 (0)