diff --git a/lib/node_modules/@stdlib/constants/float64/smallest-subnormal/test/test.js b/lib/node_modules/@stdlib/constants/float64/smallest-subnormal/test/test.js index 1608b9fbd648..70a33605e68e 100644 --- a/lib/node_modules/@stdlib/constants/float64/smallest-subnormal/test/test.js +++ b/lib/node_modules/@stdlib/constants/float64/smallest-subnormal/test/test.js @@ -34,6 +34,6 @@ tape( 'main export is a number', function test( t ) { }); tape( 'the exported value equals the smallest double-precision floating-point denormalized value', function test( t ) { - t.equal( FLOAT64_SMALLEST_SUBNORMAL, pow(2, -1022)*pow(2, -52), 'equals 2**-1022 * 2**-52' ); + t.equal( FLOAT64_SMALLEST_SUBNORMAL, pow(2, -1022)*pow(2, -52), 'returns expected value' ); t.end(); }); diff --git a/lib/node_modules/@stdlib/constants/float64/sqrt-eps/test/test.js b/lib/node_modules/@stdlib/constants/float64/sqrt-eps/test/test.js index 13c32268978c..e334a3d532c0 100644 --- a/lib/node_modules/@stdlib/constants/float64/sqrt-eps/test/test.js +++ b/lib/node_modules/@stdlib/constants/float64/sqrt-eps/test/test.js @@ -36,6 +36,6 @@ tape( 'main export is a number', function test( t ) { tape( 'the exported value equals the square 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( pow( 2, -52 ) ); - t.equal( FLOAT64_SQRT_EPSILON, expected, 'equals sqrt(2**-52)' ); + t.equal( FLOAT64_SQRT_EPSILON, expected, 'returns expected value' ); t.end(); }); diff --git a/lib/node_modules/@stdlib/constants/float64/sqrt-half-pi/test/test.js b/lib/node_modules/@stdlib/constants/float64/sqrt-half-pi/test/test.js index 68bb1e568f41..f93fab6e7702 100644 --- a/lib/node_modules/@stdlib/constants/float64/sqrt-half-pi/test/test.js +++ b/lib/node_modules/@stdlib/constants/float64/sqrt-half-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 `1.2533141373155003`', function test( t ) { - t.equal( SQRT_HALF_PI, 1.2533141373155003, 'equals 1.2533141373155003' ); + t.equal( SQRT_HALF_PI, 1.2533141373155003, 'returns expected value' ); t.end(); }); diff --git a/lib/node_modules/@stdlib/constants/float64/sqrt-half/test/test.js b/lib/node_modules/@stdlib/constants/float64/sqrt-half/test/test.js index 5a3cb469254f..8949e9ecea4c 100644 --- a/lib/node_modules/@stdlib/constants/float64/sqrt-half/test/test.js +++ b/lib/node_modules/@stdlib/constants/float64/sqrt-half/test/test.js @@ -35,6 +35,6 @@ tape( 'main export is a number', function test( t ) { tape( 'the exported value is a double-precision floating-point number which equals the square root of 1/2', function test( t ) { var expected = sqrt( 1/2 ); - t.equal( SQRT_HALF, expected, 'equals sqrt(1/2)' ); + t.equal( SQRT_HALF, expected, 'returns expected value' ); t.end(); }); diff --git a/lib/node_modules/@stdlib/constants/float64/sqrt-phi/test/test.js b/lib/node_modules/@stdlib/constants/float64/sqrt-phi/test/test.js index 73088bafc02d..589fe407e8f5 100644 --- a/lib/node_modules/@stdlib/constants/float64/sqrt-phi/test/test.js +++ b/lib/node_modules/@stdlib/constants/float64/sqrt-phi/test/test.js @@ -35,11 +35,11 @@ tape( 'main export is a number', function test( t ) { }); tape( 'export is a double-precision floating-point number equal to 1.272019649514069', function test( t ) { - t.equal( SQRT_PHI, 1.272019649514069, 'equals 1.272019649514069' ); + t.equal( SQRT_PHI, 1.272019649514069, 'returns expected value' ); t.end(); }); tape( 'the exported value equals sqrt(φ)', function test( t ) { - t.equal( SQRT_PHI, sqrt(PHI), 'equals sqrt(φ)' ); + t.equal( SQRT_PHI, sqrt(PHI), 'returns expected value' ); t.end(); }); diff --git a/lib/node_modules/@stdlib/constants/float64/sqrt-pi/test/test.js b/lib/node_modules/@stdlib/constants/float64/sqrt-pi/test/test.js index 12033281b078..18f04de1863b 100644 --- a/lib/node_modules/@stdlib/constants/float64/sqrt-pi/test/test.js +++ b/lib/node_modules/@stdlib/constants/float64/sqrt-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 `1.7724538509055160`', function test( t ) { - t.equal( SQRT_PI, 1.7724538509055160, 'equals 1.7724538509055160' ); + t.equal( SQRT_PI, 1.7724538509055160, 'returns expected value' ); t.end(); }); diff --git a/lib/node_modules/@stdlib/constants/float64/sqrt-three/test/test.js b/lib/node_modules/@stdlib/constants/float64/sqrt-three/test/test.js index b41d8e3289d4..47df163bbe09 100644 --- a/lib/node_modules/@stdlib/constants/float64/sqrt-three/test/test.js +++ b/lib/node_modules/@stdlib/constants/float64/sqrt-three/test/test.js @@ -35,6 +35,6 @@ tape( 'main export is a number', function test( t ) { tape( 'the exported value is a double-precision floating-point number equal to the square root of 3', function test( t ) { var expected = sqrt( 3 ); - t.equal( SQRT3, expected, 'equals sqrt(3)' ); + t.equal( SQRT3, expected, 'returns expected value' ); t.end(); }); diff --git a/lib/node_modules/@stdlib/constants/float64/sqrt-two-pi/test/test.js b/lib/node_modules/@stdlib/constants/float64/sqrt-two-pi/test/test.js index 552302e63485..76901109c1db 100644 --- a/lib/node_modules/@stdlib/constants/float64/sqrt-two-pi/test/test.js +++ b/lib/node_modules/@stdlib/constants/float64/sqrt-two-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 `2.5066282746310007`', function test( t ) { - t.equal( SQRT_TWO_PI, 2.5066282746310007, 'equals 2.5066282746310007' ); + t.equal( SQRT_TWO_PI, 2.5066282746310007, 'returns expected value' ); t.end(); }); diff --git a/lib/node_modules/@stdlib/constants/float64/sqrt-two/test/test.js b/lib/node_modules/@stdlib/constants/float64/sqrt-two/test/test.js index 675ec4ffe1cb..93a8a28a16b2 100644 --- a/lib/node_modules/@stdlib/constants/float64/sqrt-two/test/test.js +++ b/lib/node_modules/@stdlib/constants/float64/sqrt-two/test/test.js @@ -35,6 +35,6 @@ tape( 'main export is a number', function test( t ) { tape( 'the exported value is a double-precision floating-point number equal to the square root of 2', function test( t ) { var expected = sqrt( 2 ); - t.equal( SQRT2, expected, 'equals sqrt(2)' ); + t.equal( SQRT2, expected, 'returns expected value' ); t.end(); }); diff --git a/lib/node_modules/@stdlib/constants/float64/two-pi/test/test.js b/lib/node_modules/@stdlib/constants/float64/two-pi/test/test.js index 8fcb6cb2ed7e..135f84ef4fc8 100644 --- a/lib/node_modules/@stdlib/constants/float64/two-pi/test/test.js +++ b/lib/node_modules/@stdlib/constants/float64/two-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 6.283185307179586', function test( t ) { - t.equal( TWO_PI, 6.283185307179586, 'equals 6.283185307179586' ); + t.equal( TWO_PI, 6.283185307179586, 'returns expected value' ); t.end(); });