Skip to content

Commit 744acf7

Browse files
committed
fix: resolve lint errors
1 parent 4f9ea17 commit 744acf7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/node_modules/@stdlib/math/base/special/acosh/test/test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ tape( 'the function returns `NaN` if provided value less than `1`', function tes
161161

162162
tape( 'the function returns `0` if provided `1`', function test( t ) {
163163
t.equal( isPositiveZero( acosh( 1.0 ) ), true, 'returns expected value' );
164-
t.end();
164+
t.end();
165165
});
166166

167167
tape( 'the function returns `+infinity` if provided `+infinity`', function test( t ) {

lib/node_modules/@stdlib/math/base/special/acosh/test/test.native.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ tape( 'the function returns `NaN` if provided value less than `1`', opts, functi
170170

171171
tape( 'the function returns `0` if provided `1`', opts, function test( t ) {
172172
t.equal( isPositiveZero( acosh( 1.0 ) ), true, 'returns expected value' );
173-
t.end();
173+
t.end();
174174
});
175175

176176
tape( 'the function returns `+infinity` if provided `+infinity`', opts, function test( t ) {

0 commit comments

Comments
 (0)