@@ -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