Skip to content

Commit e92d752

Browse files
committed
Auto-generated commit
1 parent 5f1e3c6 commit e92d752

File tree

4 files changed

+44
-5
lines changed

4 files changed

+44
-5
lines changed

.github/.keepalive

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2025-08-04T00:44:04.077Z
1+
2025-08-18T00:40:56.549Z

CHANGELOG.md

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,41 @@
22

33
> Package changelog.
44
5+
<section class="release" id="unreleased">
6+
7+
## Unreleased (2025-08-18)
8+
9+
<section class="commits">
10+
11+
### Commits
12+
13+
<details>
14+
15+
- [`11581aa`](https://github.com/stdlib-js/stdlib/commit/11581aaca8c3cb824cbb92c0c0f80e76890bdb20) - **test:** use standardized assertion messages and fix lint errors _(by Philipp Burckhardt)_
16+
- [`f9651e6`](https://github.com/stdlib-js/stdlib/commit/f9651e6411b4ebd3c95dcc6b46c02e6d5be009fa) - **test:** use .strictEqual() instead of .equal() and fix lint errors _(by Philipp Burckhardt)_
17+
18+
</details>
19+
20+
</section>
21+
22+
<!-- /.commits -->
23+
24+
<section class="contributors">
25+
26+
### Contributors
27+
28+
A total of 1 person contributed to this release. Thank you to this contributor:
29+
30+
- Philipp Burckhardt
31+
32+
</section>
33+
34+
<!-- /.contributors -->
35+
36+
</section>
37+
38+
<!-- /.release -->
39+
540
<section class="release" id="v0.2.2">
641

742
## 0.2.2 (2024-07-28)

CONTRIBUTORS

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ Abhishek G <[email protected]>
1313
Abhishek Jain <[email protected]>
1414
Adarsh Palaskar <[email protected]>
1515
Aditya Sapra <[email protected]>
16+
Aditya Singh <[email protected]>
1617
Ahmed Atwa <[email protected]>
1718
Ahmed Kashkoush <[email protected]>
1819
Ahmed Khaled <[email protected]>
@@ -121,6 +122,7 @@ Muhammad Haris <[email protected]>
121122
Muhammad Taaha Tariq <[email protected]>
122123
Muhmmad Saad <[email protected]>
123124
NEEKUorAAYUSH <[email protected]>
125+
Nakul Krishnakumar <[email protected]>
124126
Naresh Jagadeesan <[email protected]>
125127
Naveen Kumar <[email protected]>
126128
Neeraj Pathak <[email protected]>
@@ -164,6 +166,7 @@ Ruthwik Chikoti <[email protected]>
164166
Ryan Seal <[email protected]>
165167
Rylan Yang <[email protected]>
166168
SAHIL KUMAR <[email protected]>
169+
SAUJANYA MAGARDE <[email protected]>
167170
SHIVAM YADAV <[email protected]>
168171
Sachin Raj <[email protected]>
169172
Sahil Goyal <[email protected]>
@@ -206,6 +209,7 @@ Vara Rahul Rajana <[email protected]>
206209
Varad Gupta <[email protected]>
207210
Vinit Pandit <[email protected]>
208211
Vivek Maurya <[email protected]>
212+
Wendy Yuchen Sun <[email protected]>
209213
Xiaochuan Ye <[email protected]>
210214
Yaswanth Kosuru <[email protected]>
211215
Yernar Yergaziyev <[email protected]>

test/test.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,11 +45,11 @@ tape( 'the function returns `false` if not provided a plain object', function te
4545
function noop() {},
4646
[],
4747
new Date(),
48-
new RegExp( '[0-9]' )
48+
new RegExp( '[0-9]' ) // eslint-disable-line prefer-regex-literals
4949
];
5050

5151
for ( i = 0; i < values.length; i++ ) {
52-
t.equal( isCircularPlainObject( values[i] ), false, 'returns false' );
52+
t.strictEqual( isCircularPlainObject( values[i] ), false, 'returns expected value' );
5353
}
5454
t.end();
5555
});
@@ -83,7 +83,7 @@ tape( 'the function returns `false` if provided a plain object not containing a
8383
obj3
8484
];
8585
for ( i = 0; i < values.length; i++ ) {
86-
t.equal( isCircularPlainObject( values[i] ), false, 'returns false' );
86+
t.strictEqual( isCircularPlainObject( values[i] ), false, 'returns expected value' );
8787
}
8888
t.end();
8989
});
@@ -117,7 +117,7 @@ tape( 'the function returns `true` if provided a plain object containing a circu
117117
obj3
118118
];
119119
for ( i = 0; i < values.length; i++ ) {
120-
t.equal( isCircularPlainObject( values[i] ), true, 'returns true' );
120+
t.strictEqual( isCircularPlainObject( values[i] ), true, 'returns expected value' );
121121
}
122122
t.end();
123123
});

0 commit comments

Comments
 (0)