diff --git a/lib/node_modules/@stdlib/constants/float64/apery/test/test.js b/lib/node_modules/@stdlib/constants/float64/apery/test/test.js index 36a872e1b4d3..829ad4ba2872 100644 --- a/lib/node_modules/@stdlib/constants/float64/apery/test/test.js +++ b/lib/node_modules/@stdlib/constants/float64/apery/test/test.js @@ -33,6 +33,6 @@ tape( 'main export is a number', function test( t ) { }); tape( 'the exported value is a double-precision floating-point number equal to 1.2020569031595942', function test( t ) { - t.equal( APERY, 1.2020569031595942, 'returns 1.2020569031595942' ); + t.equal( APERY, 1.2020569031595942, 'returns expected value' ); t.end(); }); diff --git a/lib/node_modules/@stdlib/constants/float64/catalan/test/test.js b/lib/node_modules/@stdlib/constants/float64/catalan/test/test.js index 202fe992cbda..534143eb2555 100644 --- a/lib/node_modules/@stdlib/constants/float64/catalan/test/test.js +++ b/lib/node_modules/@stdlib/constants/float64/catalan/test/test.js @@ -33,6 +33,6 @@ tape( 'main export is a number', function test( t ) { }); tape( 'the exported value is a double-precision floating-point number equal to 0.915965594177219', function test( t ) { - t.equal( CATALAN, 0.915965594177219, 'returns 0.915965594177219' ); + t.equal( CATALAN, 0.915965594177219, 'returns expected value' ); t.end(); }); diff --git a/lib/node_modules/@stdlib/constants/float64/cbrt-eps/test/test.js b/lib/node_modules/@stdlib/constants/float64/cbrt-eps/test/test.js index e8407b7bebdb..46647fa5f575 100644 --- a/lib/node_modules/@stdlib/constants/float64/cbrt-eps/test/test.js +++ b/lib/node_modules/@stdlib/constants/float64/cbrt-eps/test/test.js @@ -36,6 +36,6 @@ tape( 'main export is a number', function test( t ) { tape( 'the exported value equals the cube root of the difference between one and the smallest value greater than one which is representable as a double (2**-52)', function test( t ) { var expected = cbrt( pow( 2, -52 ) ); - t.equal( FLOAT64_CBRT_EPSILON, expected, 'equals cbrt(2**-52)' ); + t.equal( FLOAT64_CBRT_EPSILON, expected, 'returns expected value' ); t.end(); }); diff --git a/lib/node_modules/@stdlib/constants/float64/e/test/test.js b/lib/node_modules/@stdlib/constants/float64/e/test/test.js index 25af0d419fd6..c948f3ed520a 100644 --- a/lib/node_modules/@stdlib/constants/float64/e/test/test.js +++ b/lib/node_modules/@stdlib/constants/float64/e/test/test.js @@ -33,6 +33,6 @@ tape( 'main export is a number', function test( t ) { }); tape( 'export is a double-precision floating-point number equal to 2.718281828459045', function test( t ) { - t.equal( E, 2.718281828459045, 'equals 2.718281828459045' ); + t.equal( E, 2.718281828459045, 'returns expected value' ); t.end(); }); diff --git a/lib/node_modules/@stdlib/constants/float64/eps/test/test.js b/lib/node_modules/@stdlib/constants/float64/eps/test/test.js index 252072989c85..029960186c2d 100644 --- a/lib/node_modules/@stdlib/constants/float64/eps/test/test.js +++ b/lib/node_modules/@stdlib/constants/float64/eps/test/test.js @@ -35,6 +35,6 @@ tape( 'main export is a number', function test( t ) { tape( 'the exported value equals the difference between one and the smallest value greater than one which is representable as a double (2**-52)', function test( t ) { var expected = pow( 2, -52 ); - t.equal( FLOAT64_EPSILON, expected, 'equals 2**-52' ); + t.equal( FLOAT64_EPSILON, expected, 'returns expected value' ); t.end(); }); diff --git a/lib/node_modules/@stdlib/constants/float64/eulergamma/test/test.js b/lib/node_modules/@stdlib/constants/float64/eulergamma/test/test.js index 1a077914dd17..d07f28c102bf 100644 --- a/lib/node_modules/@stdlib/constants/float64/eulergamma/test/test.js +++ b/lib/node_modules/@stdlib/constants/float64/eulergamma/test/test.js @@ -33,6 +33,6 @@ tape( 'main export is a number', function test( t ) { }); tape( 'the exported value is a double-precision floating-point number equal to 0.5772156649015329', function test( t ) { - t.equal( EULERGAMMA, 0.5772156649015329, 'returns 0.5772156649015329' ); + t.equal( EULERGAMMA, 0.5772156649015329, 'returns expected value' ); t.end(); }); diff --git a/lib/node_modules/@stdlib/constants/float64/exponent-bias/test/test.js b/lib/node_modules/@stdlib/constants/float64/exponent-bias/test/test.js index 8f0e4f8d3086..91f9b614d611 100644 --- a/lib/node_modules/@stdlib/constants/float64/exponent-bias/test/test.js +++ b/lib/node_modules/@stdlib/constants/float64/exponent-bias/test/test.js @@ -33,6 +33,6 @@ tape( 'main export is a number', function test( t ) { }); tape( 'the exported value is 1023', function test( t ) { - t.equal( FLOAT64_EXPONENT_BIAS, 1023, 'equals 1023' ); + t.equal( FLOAT64_EXPONENT_BIAS, 1023, 'returns expected value' ); t.end(); }); diff --git a/lib/node_modules/@stdlib/constants/float64/fourth-pi/test/test.js b/lib/node_modules/@stdlib/constants/float64/fourth-pi/test/test.js index 95d4da82827e..7045c32d1808 100644 --- a/lib/node_modules/@stdlib/constants/float64/fourth-pi/test/test.js +++ b/lib/node_modules/@stdlib/constants/float64/fourth-pi/test/test.js @@ -33,6 +33,6 @@ tape( 'main export is a number', function test( t ) { }); tape( 'export is a double-precision floating-point number equal to 7.85398163397448309616e-1', function test( t ) { - t.equal( FOURTH_PI, 7.85398163397448309616e-1, 'equals 7.85398163397448309616e-1' ); + t.equal( FOURTH_PI, 7.85398163397448309616e-1, 'returns expected value' ); t.end(); }); diff --git a/lib/node_modules/@stdlib/constants/float64/fourth-root-eps/test/test.js b/lib/node_modules/@stdlib/constants/float64/fourth-root-eps/test/test.js index 3012476e3f31..76e0bd9c5bde 100644 --- a/lib/node_modules/@stdlib/constants/float64/fourth-root-eps/test/test.js +++ b/lib/node_modules/@stdlib/constants/float64/fourth-root-eps/test/test.js @@ -36,6 +36,6 @@ tape( 'main export is a number', function test( t ) { tape( 'the exported value equals the fourth root of the difference between one and the smallest value greater than one which is representable as a double (2**-52)', function test( t ) { var expected = sqrt( sqrt( pow( 2, -52 ) ) ); - t.equal( FLOAT64_FOURTH_ROOT_EPS, expected, 'equals sqrt( sqrt(2**-52) )' ); + t.equal( FLOAT64_FOURTH_ROOT_EPS, expected, 'returns expected value' ); t.end(); }); diff --git a/lib/node_modules/@stdlib/constants/float64/gamma-lanczos-g/test/test.js b/lib/node_modules/@stdlib/constants/float64/gamma-lanczos-g/test/test.js index bc20cc8f556f..d23fe460dd50 100644 --- a/lib/node_modules/@stdlib/constants/float64/gamma-lanczos-g/test/test.js +++ b/lib/node_modules/@stdlib/constants/float64/gamma-lanczos-g/test/test.js @@ -34,6 +34,6 @@ tape( 'main export is a number', function test( t ) { tape( 'the exported value equals `10.900511`', function test( t ) { var expected = 10.900511; - t.strictEqual( FLOAT64_GAMMA_LANCZOS_G, expected, 'equals 10.900511' ); + t.strictEqual( FLOAT64_GAMMA_LANCZOS_G, expected, 'returns expected value' ); t.end(); });