Skip to content

Commit 705c870

Browse files
committed
fix: resolve lint errors
1 parent 0246e27 commit 705c870

File tree

1 file changed

+4
-4
lines changed
  • lib/node_modules/@stdlib/stats/base/dists/planck/kurtosis/test

1 file changed

+4
-4
lines changed

lib/node_modules/@stdlib/stats/base/dists/planck/kurtosis/test/test.native.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -44,19 +44,19 @@ var opts = {
4444

4545
// TESTS //
4646

47-
tape( 'main export is a function',opts, function test( t ) {
47+
tape( 'main export is a function', opts, function test( t ) {
4848
t.ok( true, __filename );
4949
t.strictEqual( typeof kurtosis, 'function', 'main export is a function' );
5050
t.end();
5151
});
5252

53-
tape( 'if provided `NaN` for `lambda`, the function returns `NaN`',opts, function test( t ) {
53+
tape( 'if provided `NaN` for `lambda`, the function returns `NaN`', opts, function test( t ) {
5454
var v = kurtosis( NaN );
5555
t.equal( isnan( v ), true, 'returns NaN' );
5656
t.end();
5757
});
5858

59-
tape( 'if provided a shape parameter `lambda` which is nonpositive, the function returns `NaN`',opts, function test( t ) {
59+
tape( 'if provided a shape parameter `lambda` which is nonpositive, the function returns `NaN`', opts, function test( t ) {
6060
var v;
6161

6262
v = kurtosis( 0.0 );
@@ -68,7 +68,7 @@ tape( 'if provided a shape parameter `lambda` which is nonpositive, the function
6868
t.end();
6969
});
7070

71-
tape( 'the function returns the excess kurtosis of a Planck distribution', opts , function test( t ) {
71+
tape( 'the function returns the excess kurtosis of a Planck distribution', opts, function test( t ) {
7272
var expected;
7373
var lambda;
7474
var delta;

0 commit comments

Comments
 (0)