diff --git a/lib/node_modules/@stdlib/constants/float32/max-base10-exponent-subnormal/test/test.js b/lib/node_modules/@stdlib/constants/float32/max-base10-exponent-subnormal/test/test.js index 0fb43a5a26fe..6fd530678fce 100644 --- a/lib/node_modules/@stdlib/constants/float32/max-base10-exponent-subnormal/test/test.js +++ b/lib/node_modules/@stdlib/constants/float32/max-base10-exponent-subnormal/test/test.js @@ -33,6 +33,6 @@ tape( 'main export is a number', function test( t ) { }); tape( 'the exported value is `-38`', function test( t ) { - t.equal( FLOAT32_MAX_BASE10_EXPONENT_SUBNORMAL, -38, 'equals -38' ); + t.equal( FLOAT32_MAX_BASE10_EXPONENT_SUBNORMAL, -38, 'returns expected value' ); t.end(); }); diff --git a/lib/node_modules/@stdlib/constants/float32/max-base10-exponent/test/test.js b/lib/node_modules/@stdlib/constants/float32/max-base10-exponent/test/test.js index 7a1b05ae108e..5a611737bb77 100644 --- a/lib/node_modules/@stdlib/constants/float32/max-base10-exponent/test/test.js +++ b/lib/node_modules/@stdlib/constants/float32/max-base10-exponent/test/test.js @@ -33,6 +33,6 @@ tape( 'main export is a number', function test( t ) { }); tape( 'the exported value is `38`', function test( t ) { - t.equal( FLOAT32_MAX_BASE10_EXPONENT, 38, 'equals 38' ); + t.equal( FLOAT32_MAX_BASE10_EXPONENT, 38, 'returns expected value' ); t.end(); }); diff --git a/lib/node_modules/@stdlib/constants/float32/max-base2-exponent-subnormal/test/test.js b/lib/node_modules/@stdlib/constants/float32/max-base2-exponent-subnormal/test/test.js index 3e7b6f2df9cf..cafc2338d314 100644 --- a/lib/node_modules/@stdlib/constants/float32/max-base2-exponent-subnormal/test/test.js +++ b/lib/node_modules/@stdlib/constants/float32/max-base2-exponent-subnormal/test/test.js @@ -33,6 +33,6 @@ tape( 'main export is a number', function test( t ) { }); tape( 'the exported value is -127', function test( t ) { - t.equal( FLOAT32_MAX_BASE2_EXPONENT_SUBNORMAL, -127, 'equals -127' ); + t.equal( FLOAT32_MAX_BASE2_EXPONENT_SUBNORMAL, -127, 'returns expected value' ); t.end(); }); diff --git a/lib/node_modules/@stdlib/constants/float32/max-safe-integer/test/test.js b/lib/node_modules/@stdlib/constants/float32/max-safe-integer/test/test.js index 7919b81ff420..92e6c2b6f497 100644 --- a/lib/node_modules/@stdlib/constants/float32/max-safe-integer/test/test.js +++ b/lib/node_modules/@stdlib/constants/float32/max-safe-integer/test/test.js @@ -34,6 +34,6 @@ tape( 'main export is a number', function test( t ) { }); tape( 'the exported value is 2**24-1', function test( t ) { - t.equal( FLOAT32_MAX_SAFE_INTEGER, pow( 2, 24 )-1, 'returns 2**24-1' ); + t.equal( FLOAT32_MAX_SAFE_INTEGER, pow( 2, 24 )-1, 'returns expected value' ); t.end(); }); diff --git a/lib/node_modules/@stdlib/constants/float32/min-base10-exponent-subnormal/test/test.js b/lib/node_modules/@stdlib/constants/float32/min-base10-exponent-subnormal/test/test.js index add48f8e5875..b2297de6a59b 100644 --- a/lib/node_modules/@stdlib/constants/float32/min-base10-exponent-subnormal/test/test.js +++ b/lib/node_modules/@stdlib/constants/float32/min-base10-exponent-subnormal/test/test.js @@ -33,6 +33,6 @@ tape( 'main export is a number', function test( t ) { }); tape( 'the exported value is `-45`', function test( t ) { - t.equal( FLOAT32_MIN_BASE10_EXPONENT_SUBNORMAL, -45, 'equals -45' ); + t.equal( FLOAT32_MIN_BASE10_EXPONENT_SUBNORMAL, -45, 'returns expected value' ); t.end(); }); diff --git a/lib/node_modules/@stdlib/constants/float32/min-base10-exponent/test/test.js b/lib/node_modules/@stdlib/constants/float32/min-base10-exponent/test/test.js index 164401b9bf10..71e7cfaf937b 100644 --- a/lib/node_modules/@stdlib/constants/float32/min-base10-exponent/test/test.js +++ b/lib/node_modules/@stdlib/constants/float32/min-base10-exponent/test/test.js @@ -33,6 +33,6 @@ tape( 'main export is a number', function test( t ) { }); tape( 'the exported value is `-37`', function test( t ) { - t.equal( FLOAT32_MIN_BASE10_EXPONENT, -37, 'equals -37' ); + t.equal( FLOAT32_MIN_BASE10_EXPONENT, -37, 'returns expected value' ); t.end(); }); diff --git a/lib/node_modules/@stdlib/constants/float32/min-base2-exponent-subnormal/test/test.js b/lib/node_modules/@stdlib/constants/float32/min-base2-exponent-subnormal/test/test.js index bf608dae273d..567770ed81e7 100644 --- a/lib/node_modules/@stdlib/constants/float32/min-base2-exponent-subnormal/test/test.js +++ b/lib/node_modules/@stdlib/constants/float32/min-base2-exponent-subnormal/test/test.js @@ -33,6 +33,6 @@ tape( 'main export is a number', function test( t ) { }); tape( 'the exported value is -149', function test( t ) { - t.equal( FLOAT32_MIN_BASE2_EXPONENT_SUBNORMAL, -149, 'equals -149' ); + t.equal( FLOAT32_MIN_BASE2_EXPONENT_SUBNORMAL, -149, 'returns expected value' ); t.end(); }); diff --git a/lib/node_modules/@stdlib/constants/float32/min-base2-exponent/test/test.js b/lib/node_modules/@stdlib/constants/float32/min-base2-exponent/test/test.js index 17da6b1382c7..28c7bc56e5b5 100644 --- a/lib/node_modules/@stdlib/constants/float32/min-base2-exponent/test/test.js +++ b/lib/node_modules/@stdlib/constants/float32/min-base2-exponent/test/test.js @@ -33,6 +33,6 @@ tape( 'main export is a number', function test( t ) { }); tape( 'the exported value is `-126`', function test( t ) { - t.equal( FLOAT32_MIN_BASE2_EXPONENT, -126, 'equals -126' ); + t.equal( FLOAT32_MIN_BASE2_EXPONENT, -126, 'returns expected value' ); t.end(); }); diff --git a/lib/node_modules/@stdlib/constants/float32/min-safe-integer/test/test.js b/lib/node_modules/@stdlib/constants/float32/min-safe-integer/test/test.js index 44498e1d03c1..ef236574b010 100644 --- a/lib/node_modules/@stdlib/constants/float32/min-safe-integer/test/test.js +++ b/lib/node_modules/@stdlib/constants/float32/min-safe-integer/test/test.js @@ -34,6 +34,6 @@ tape( 'main export is a number', function test( t ) { }); tape( 'the exported value is -2**24+1', function test( t ) { - t.equal( FLOAT32_MIN_SAFE_INTEGER, -pow( 2, 24 )+1, 'returns -2**24+1' ); + t.equal( FLOAT32_MIN_SAFE_INTEGER, -pow( 2, 24 )+1, 'returns expected value' ); t.end(); }); diff --git a/lib/node_modules/@stdlib/constants/float32/ninf/test/test.js b/lib/node_modules/@stdlib/constants/float32/ninf/test/test.js index 2ad1ca5a43bb..3ecf3592f483 100644 --- a/lib/node_modules/@stdlib/constants/float32/ninf/test/test.js +++ b/lib/node_modules/@stdlib/constants/float32/ninf/test/test.js @@ -35,6 +35,6 @@ tape( 'main export is a number', function test( t ) { tape( 'export is equal to negative infinity', function test( t ) { // Note: we rely on implicit type promotion. A 32-bit infinity should be promoted to a 64-bit infinity... - t.equal( FLOAT32_NINF, Number.NEGATIVE_INFINITY, 'equals -infinity' ); + t.equal( FLOAT32_NINF, Number.NEGATIVE_INFINITY, 'returns expected value' ); t.end(); }); diff --git a/lib/node_modules/@stdlib/constants/float32/num-bytes/test/test.js b/lib/node_modules/@stdlib/constants/float32/num-bytes/test/test.js index 3709f8aeb3e1..948fed8e36d9 100644 --- a/lib/node_modules/@stdlib/constants/float32/num-bytes/test/test.js +++ b/lib/node_modules/@stdlib/constants/float32/num-bytes/test/test.js @@ -33,6 +33,6 @@ tape( 'main export is a number', function test( t ) { }); tape( 'the exported value is 4', function test( t ) { - t.equal( NUM_BYTES, 4, 'equals 4' ); + t.equal( NUM_BYTES, 4, 'returns expected value' ); t.end(); }); diff --git a/lib/node_modules/@stdlib/constants/float32/phi/test/test.js b/lib/node_modules/@stdlib/constants/float32/phi/test/test.js index 56ca1af4c0fc..c95eed8a92dd 100644 --- a/lib/node_modules/@stdlib/constants/float32/phi/test/test.js +++ b/lib/node_modules/@stdlib/constants/float32/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.6180340051651', function test( t ) { - t.equal( FLOAT32_PHI, float64ToFloat32( 1.618033988749895 ), 'equals 1.6180340051651' ); + t.equal( FLOAT32_PHI, float64ToFloat32( 1.618033988749895 ), 'returns expected value' ); t.end(); }); tape( 'the exported value equals ( 1 + sqrtf( 5 ) ) / 2', function test( t ) { - t.equal( FLOAT32_PHI, float64ToFloat32( float64ToFloat32( 1.0 + sqrtf( 5.0 ) ) / 2.0 ), 'equals ( 1 + sqrtf( 5 ) ) / 2' ); + t.equal( FLOAT32_PHI, float64ToFloat32( float64ToFloat32( 1.0 + sqrtf( 5.0 ) ) / 2.0 ), 'returns expected value' ); t.end(); }); diff --git a/lib/node_modules/@stdlib/constants/float32/pi-squared/test/test.js b/lib/node_modules/@stdlib/constants/float32/pi-squared/test/test.js index f0fa39f44608..973c8e89a1d1 100644 --- a/lib/node_modules/@stdlib/constants/float32/pi-squared/test/test.js +++ b/lib/node_modules/@stdlib/constants/float32/pi-squared/test/test.js @@ -38,7 +38,7 @@ tape( 'main export is a number', function test( t ) { }); tape( 'export is a double-precision floating-point number equal to 9.869604110717773', function test( t ) { - t.equal( FLOAT32_PI_SQUARED, 9.869604110717773, 'equals 9.869604110717773' ); + t.equal( FLOAT32_PI_SQUARED, 9.869604110717773, 'returns expected value' ); t.end(); }); diff --git a/lib/node_modules/@stdlib/constants/float32/pinf/test/test.js b/lib/node_modules/@stdlib/constants/float32/pinf/test/test.js index 68470e7727aa..633b4d144b2c 100644 --- a/lib/node_modules/@stdlib/constants/float32/pinf/test/test.js +++ b/lib/node_modules/@stdlib/constants/float32/pinf/test/test.js @@ -35,6 +35,6 @@ tape( 'main export is a number', function test( t ) { tape( 'export is equal to positive infinity', function test( t ) { // Note: we rely on implicit type promotion. A 32-bit infinity should be promoted to a 64-bit infinity... - t.equal( FLOAT32_PINF, Number.POSITIVE_INFINITY, 'equals +infinity' ); + t.equal( FLOAT32_PINF, Number.POSITIVE_INFINITY, 'returns expected value' ); t.end(); }); diff --git a/lib/node_modules/@stdlib/constants/float32/precision/test/test.js b/lib/node_modules/@stdlib/constants/float32/precision/test/test.js index ca63ad05eb1f..bbf59bfc7623 100644 --- a/lib/node_modules/@stdlib/constants/float32/precision/test/test.js +++ b/lib/node_modules/@stdlib/constants/float32/precision/test/test.js @@ -33,6 +33,6 @@ tape( 'main export is a number', function test( t ) { }); tape( 'the exported value is 24', function test( t ) { - t.equal( FLOAT32_PRECISION, 24, 'equals 24' ); + t.equal( FLOAT32_PRECISION, 24, 'returns expected value' ); t.end(); }); diff --git a/lib/node_modules/@stdlib/constants/float32/smallest-normal/test/test.js b/lib/node_modules/@stdlib/constants/float32/smallest-normal/test/test.js index df99c352eb1d..8a586f77bb04 100644 --- a/lib/node_modules/@stdlib/constants/float32/smallest-normal/test/test.js +++ b/lib/node_modules/@stdlib/constants/float32/smallest-normal/test/test.js @@ -34,6 +34,6 @@ tape( 'main export is a number', function test( t ) { }); tape( 'the exported value equals the smallest normal value', function test( t ) { - t.equal( FLOAT32_SMALLEST_NORMAL, pow(2, -126), 'equals 2**-126' ); + t.equal( FLOAT32_SMALLEST_NORMAL, pow(2, -126), 'returns expected value' ); t.end(); }); diff --git a/lib/node_modules/@stdlib/constants/float32/smallest-subnormal/test/test.js b/lib/node_modules/@stdlib/constants/float32/smallest-subnormal/test/test.js index 49b7c98afbc0..d1e32d6a8fde 100644 --- a/lib/node_modules/@stdlib/constants/float32/smallest-subnormal/test/test.js +++ b/lib/node_modules/@stdlib/constants/float32/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 single-precision floating-point denormalized value', function test( t ) { - t.equal( FLOAT32_SMALLEST_SUBNORMAL, pow(2, -126)*pow(2, -23), 'equals 2**-126 * 2**-23' ); + t.equal( FLOAT32_SMALLEST_SUBNORMAL, pow(2, -126)*pow(2, -23), 'returns expected value' ); t.end(); }); diff --git a/lib/node_modules/@stdlib/constants/float32/sqrt-eps/test/test.js b/lib/node_modules/@stdlib/constants/float32/sqrt-eps/test/test.js index 46657f4c03b8..1570071a22c9 100644 --- a/lib/node_modules/@stdlib/constants/float32/sqrt-eps/test/test.js +++ b/lib/node_modules/@stdlib/constants/float32/sqrt-eps/test/test.js @@ -37,6 +37,6 @@ tape( 'main export is a number', function test( t ) { tape( 'the exported value equals the square root of single-precision floating-point epsilon', function test( t ) { var expected = float64ToFloat32( sqrt( FLOAT32_EPSILON ) ); - t.strictEqual( FLOAT32_SQRT_EPSILON, expected, 'equals sqrt(2**-23)' ); + t.strictEqual( FLOAT32_SQRT_EPSILON, expected, 'returns expected value' ); t.end(); }); diff --git a/lib/node_modules/@stdlib/constants/float32/sqrt-half-pi/test/test.js b/lib/node_modules/@stdlib/constants/float32/sqrt-half-pi/test/test.js index 1ee239a4240c..bf2b450a7b2a 100644 --- a/lib/node_modules/@stdlib/constants/float32/sqrt-half-pi/test/test.js +++ b/lib/node_modules/@stdlib/constants/float32/sqrt-half-pi/test/test.js @@ -33,6 +33,6 @@ tape( 'main export is a number', function test( t ) { }); tape( 'the exported value is a single-precision floating-point number equal to `1.2533141374588013`', function test( t ) { - t.equal( FLOAT32_SQRT_HALF_PI, 1.2533141374588013, 'equals 1.2533141374588013' ); + t.equal( FLOAT32_SQRT_HALF_PI, 1.2533141374588013, 'returns expected value' ); t.end(); }); diff --git a/lib/node_modules/@stdlib/constants/float32/sqrt-half/test/test.js b/lib/node_modules/@stdlib/constants/float32/sqrt-half/test/test.js index a0429ffe3b4e..42f772502b4f 100644 --- a/lib/node_modules/@stdlib/constants/float32/sqrt-half/test/test.js +++ b/lib/node_modules/@stdlib/constants/float32/sqrt-half/test/test.js @@ -35,6 +35,6 @@ tape( 'main export is a number', function test( t ) { }); tape( 'the exported value is a single-precision floating-point number equal to the square root of 1/2', function test( t ) { - t.equal( FLOAT32_SQRT_HALF, float64ToFloat32( sqrtf( 1/2 ) ), 'equals sqrtf(1/2)' ); + t.equal( FLOAT32_SQRT_HALF, float64ToFloat32( sqrtf( 1/2 ) ), 'returns expected value' ); t.end(); }); diff --git a/lib/node_modules/@stdlib/constants/float32/sqrt-phi/test/test.js b/lib/node_modules/@stdlib/constants/float32/sqrt-phi/test/test.js index bddc7bd2ceae..3f67f1792378 100644 --- a/lib/node_modules/@stdlib/constants/float32/sqrt-phi/test/test.js +++ b/lib/node_modules/@stdlib/constants/float32/sqrt-phi/test/test.js @@ -35,11 +35,11 @@ tape( 'main export is a number', function test( t ) { }); tape( 'export is a single-precision floating-point number equal to 1.272019624710083', function test( t ) { - t.equal( FLOAT32_SQRT_PHI, 1.272019624710083, 'equals 1.272019624710083' ); + t.equal( FLOAT32_SQRT_PHI, 1.272019624710083, 'returns expected value' ); t.end(); }); tape( 'the exported value equals sqrtf(φ)', function test( t ) { - t.equal( FLOAT32_SQRT_PHI, sqrtf(PHI), 'equals sqrtf(φ)' ); + t.equal( FLOAT32_SQRT_PHI, sqrtf(PHI), 'returns expected value' ); t.end(); }); diff --git a/lib/node_modules/@stdlib/constants/float32/sqrt-three/test/test.js b/lib/node_modules/@stdlib/constants/float32/sqrt-three/test/test.js index bba942ed39e6..ae7c04d2f901 100644 --- a/lib/node_modules/@stdlib/constants/float32/sqrt-three/test/test.js +++ b/lib/node_modules/@stdlib/constants/float32/sqrt-three/test/test.js @@ -35,6 +35,6 @@ tape( 'main export is a number', function test( t ) { }); tape( 'the exported value is a single-precision floating-point number equal to the square root of 3', function test( t ) { - t.equal( FLOAT32_SQRT3, float64ToFloat32( sqrtf( 3 ) ), 'equals sqrtf(3)' ); + t.equal( FLOAT32_SQRT3, float64ToFloat32( sqrtf( 3 ) ), 'returns expected value' ); t.end(); });