diff --git a/lib/node_modules/@stdlib/constants/float32/apery/test/test.js b/lib/node_modules/@stdlib/constants/float32/apery/test/test.js index 4b0af7f9e233..71d0d728fff0 100644 --- a/lib/node_modules/@stdlib/constants/float32/apery/test/test.js +++ b/lib/node_modules/@stdlib/constants/float32/apery/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.202056884765625', function test( t ) { - t.equal( FLOAT32_APERY, 1.202056884765625, 'returns 1.202056884765625' ); + t.equal( FLOAT32_APERY, 1.202056884765625, 'returns expected value' ); t.end(); }); diff --git a/lib/node_modules/@stdlib/constants/float32/catalan/test/test.js b/lib/node_modules/@stdlib/constants/float32/catalan/test/test.js index 761959050eec..3863594d0b09 100644 --- a/lib/node_modules/@stdlib/constants/float32/catalan/test/test.js +++ b/lib/node_modules/@stdlib/constants/float32/catalan/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 0.9159656167030334', function test( t ) { - t.equal( FLOAT32_CATALAN, 0.9159656167030334, 'returns 0.9159656167030334' ); + t.equal( FLOAT32_CATALAN, 0.9159656167030334, 'returns expected value' ); t.end(); }); diff --git a/lib/node_modules/@stdlib/constants/float32/cbrt-eps/test/test.js b/lib/node_modules/@stdlib/constants/float32/cbrt-eps/test/test.js index 4dd62a91a767..72d4f14432d4 100644 --- a/lib/node_modules/@stdlib/constants/float32/cbrt-eps/test/test.js +++ b/lib/node_modules/@stdlib/constants/float32/cbrt-eps/test/test.js @@ -37,6 +37,6 @@ tape( 'main export is a number', function test( t ) { tape( 'the exported value equals the cube root of single-precision floating-point epsilon', function test( t ) { var expected = float64ToFloat32( cbrt( FLOAT32_EPSILON ) ); - t.strictEqual( FLOAT32_CBRT_EPSILON, expected, 'equals cbrt(2**-23)' ); + t.strictEqual( FLOAT32_CBRT_EPSILON, expected, 'returns expected value' ); t.end(); }); diff --git a/lib/node_modules/@stdlib/constants/float32/e/test/test.js b/lib/node_modules/@stdlib/constants/float32/e/test/test.js index ce7ab560d81b..f6b575be65f2 100644 --- a/lib/node_modules/@stdlib/constants/float32/e/test/test.js +++ b/lib/node_modules/@stdlib/constants/float32/e/test/test.js @@ -33,6 +33,6 @@ tape( 'main export is a number', function test( t ) { }); tape( 'export is a single-precision floating-point number equal to 2.7182817459106445', function test( t ) { - t.equal( E, 2.7182817459106445, 'equals 2.7182817459106445' ); + t.equal( E, 2.7182817459106445, 'returns expected value' ); t.end(); }); diff --git a/lib/node_modules/@stdlib/constants/float32/eps/test/test.js b/lib/node_modules/@stdlib/constants/float32/eps/test/test.js index 63ad501491ca..597832822141 100644 --- a/lib/node_modules/@stdlib/constants/float32/eps/test/test.js +++ b/lib/node_modules/@stdlib/constants/float32/eps/test/test.js @@ -36,6 +36,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 single (2**-23)', function test( t ) { var expected = float64ToFloat32( pow( 2, -23 ) ); - t.strictEqual( FLOAT32_EPSILON, expected, 'equals 2**-23' ); + t.strictEqual( FLOAT32_EPSILON, expected, 'returns expected value' ); t.end(); }); diff --git a/lib/node_modules/@stdlib/constants/float32/eulergamma/test/test.js b/lib/node_modules/@stdlib/constants/float32/eulergamma/test/test.js index 191b3eb318ae..6dae58bbaf79 100644 --- a/lib/node_modules/@stdlib/constants/float32/eulergamma/test/test.js +++ b/lib/node_modules/@stdlib/constants/float32/eulergamma/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 0.5772156715393066', function test( t ) { - t.equal( FLOAT32_EULERGAMMA, 0.5772156715393066, 'returns 0.5772156715393066' ); + t.equal( FLOAT32_EULERGAMMA, 0.5772156715393066, 'returns expected value' ); t.end(); }); diff --git a/lib/node_modules/@stdlib/constants/float32/exponent-bias/test/test.js b/lib/node_modules/@stdlib/constants/float32/exponent-bias/test/test.js index e6a12e959049..0a889264cf99 100644 --- a/lib/node_modules/@stdlib/constants/float32/exponent-bias/test/test.js +++ b/lib/node_modules/@stdlib/constants/float32/exponent-bias/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_EXPONENT_BIAS, 127, 'equals 127' ); + t.equal( FLOAT32_EXPONENT_BIAS, 127, 'returns expected value' ); t.end(); }); diff --git a/lib/node_modules/@stdlib/constants/float32/fourth-root-eps/test/test.js b/lib/node_modules/@stdlib/constants/float32/fourth-root-eps/test/test.js index 2d881b5a4e27..d748c374e690 100644 --- a/lib/node_modules/@stdlib/constants/float32/fourth-root-eps/test/test.js +++ b/lib/node_modules/@stdlib/constants/float32/fourth-root-eps/test/test.js @@ -37,6 +37,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 float (2**-23)', function test( t ) { var expected = sqrtf( sqrtf( float64ToFloat32( pow( 2, -23 ) ) ) ); - t.equal( FLOAT32_FOURTH_ROOT_EPS, expected, 'equals sqrtf( sqrtf(2**-23) )' ); + t.equal( FLOAT32_FOURTH_ROOT_EPS, expected, 'returns expected value' ); t.end(); }); diff --git a/lib/node_modules/@stdlib/constants/float32/gamma-lanczos-g/test/test.js b/lib/node_modules/@stdlib/constants/float32/gamma-lanczos-g/test/test.js index f8e822fccebf..eb91a3f69f4b 100644 --- a/lib/node_modules/@stdlib/constants/float32/gamma-lanczos-g/test/test.js +++ b/lib/node_modules/@stdlib/constants/float32/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.900510787963867`', function test( t ) { var expected = 10.900510787963867; - t.strictEqual( FLOAT32_GAMMA_LANCZOS_G, expected, 'equals 10.900510787963867' ); + t.strictEqual( FLOAT32_GAMMA_LANCZOS_G, expected, 'returns expected value' ); t.end(); }); diff --git a/lib/node_modules/@stdlib/constants/float32/half-ln-two/test/test.js b/lib/node_modules/@stdlib/constants/float32/half-ln-two/test/test.js index b6d6ca0ecc20..c7ef1cf8bea4 100644 --- a/lib/node_modules/@stdlib/constants/float32/half-ln-two/test/test.js +++ b/lib/node_modules/@stdlib/constants/float32/half-ln-two/test/test.js @@ -37,7 +37,7 @@ tape( 'main export is a number', function test( t ) { }); tape( 'export is a single-precision floating-point number equal to `0.3465735912322998`', function test( t ) { - t.equal( FLOAT32_HALF_LN2, float64ToFloat32( 3.46573590279972654709e-01 ), 'equals 0.3465735912322998' ); + t.equal( FLOAT32_HALF_LN2, float64ToFloat32( 3.46573590279972654709e-01 ), 'returns expected value' ); t.end(); }); diff --git a/lib/node_modules/@stdlib/constants/float32/ln-pi/test/test.js b/lib/node_modules/@stdlib/constants/float32/ln-pi/test/test.js index 19ef6a6f9fe9..9098fa0986bc 100644 --- a/lib/node_modules/@stdlib/constants/float32/ln-pi/test/test.js +++ b/lib/node_modules/@stdlib/constants/float32/ln-pi/test/test.js @@ -35,6 +35,6 @@ tape( 'main export is a number', function test( t ) { }); tape( 'export is a single-precision floating-point number equal to 1.1447298526763916', function test( t ) { - t.equal( LN_PI, lnf(PI), 'equals 1.1447298526763916' ); + t.equal( LN_PI, lnf(PI), 'returns expected value' ); t.end(); }); diff --git a/lib/node_modules/@stdlib/constants/float32/ln-sqrt-two-pi/test/test.js b/lib/node_modules/@stdlib/constants/float32/ln-sqrt-two-pi/test/test.js index aa2ae3cdbd4c..868f64d47bed 100644 --- a/lib/node_modules/@stdlib/constants/float32/ln-sqrt-two-pi/test/test.js +++ b/lib/node_modules/@stdlib/constants/float32/ln-sqrt-two-pi/test/test.js @@ -38,7 +38,7 @@ tape( 'main export is a number', function test( t ) { }); tape( 'export is a single-precision floating-point number equal to 0.9189385175704956', function test( t ) { - t.equal( FLOAT32_LN_SQRT_TWO_PI, 0.9189385175704956, 'equals 0.9189385175704956' ); + t.equal( FLOAT32_LN_SQRT_TWO_PI, 0.9189385175704956, 'returns expected value' ); t.end(); }); diff --git a/lib/node_modules/@stdlib/constants/float32/ln-two-pi/test/test.js b/lib/node_modules/@stdlib/constants/float32/ln-two-pi/test/test.js index 8e2f9674b0b0..9e53d2ddfda7 100644 --- a/lib/node_modules/@stdlib/constants/float32/ln-two-pi/test/test.js +++ b/lib/node_modules/@stdlib/constants/float32/ln-two-pi/test/test.js @@ -37,7 +37,7 @@ tape( 'main export is a number', function test( t ) { }); tape( 'export is a single-precision floating-point number equal to `1.8378770351409912`', function test( t ) { - t.equal( FLOAT32_LN_TWO_PI, 1.8378770351409912, 'equals 1.8378770351409912' ); + t.equal( FLOAT32_LN_TWO_PI, 1.8378770351409912, 'returns expected value' ); t.end(); }); diff --git a/lib/node_modules/@stdlib/constants/float32/ln-two/test/test.js b/lib/node_modules/@stdlib/constants/float32/ln-two/test/test.js index 64859cabe3f7..988fbc7d47d8 100644 --- a/lib/node_modules/@stdlib/constants/float32/ln-two/test/test.js +++ b/lib/node_modules/@stdlib/constants/float32/ln-two/test/test.js @@ -37,7 +37,7 @@ tape( 'main export is a number', function test( t ) { }); tape( 'export is a single-precision floating-point number equal to `0.6931471824645996`', function test( t ) { - t.equal( FLOAT32_LN2, float64ToFloat32( 0.6931471805599453 ), 'equals 0.6931471824645996' ); + t.equal( FLOAT32_LN2, float64ToFloat32( 0.6931471805599453 ), 'returns expected value' ); t.end(); }); diff --git a/lib/node_modules/@stdlib/constants/float32/log10-e/test/test.js b/lib/node_modules/@stdlib/constants/float32/log10-e/test/test.js index d827f662937b..4ffd129a65fb 100644 --- a/lib/node_modules/@stdlib/constants/float32/log10-e/test/test.js +++ b/lib/node_modules/@stdlib/constants/float32/log10-e/test/test.js @@ -33,6 +33,6 @@ tape( 'main export is a number', function test( t ) { }); tape( 'export is a single-precision floating-point number equal to 0.4342944920063019', function test( t ) { - t.equal( FLOAT32_LOG10E, 0.4342944920063019, 'equals 0.4342944920063019' ); + t.equal( FLOAT32_LOG10E, 0.4342944920063019, 'returns expected value' ); t.end(); }); diff --git a/lib/node_modules/@stdlib/constants/float32/log2-e/test/test.js b/lib/node_modules/@stdlib/constants/float32/log2-e/test/test.js index c27589a2983d..ce5002758d16 100644 --- a/lib/node_modules/@stdlib/constants/float32/log2-e/test/test.js +++ b/lib/node_modules/@stdlib/constants/float32/log2-e/test/test.js @@ -33,6 +33,6 @@ tape( 'main export is a number', function test( t ) { }); tape( 'export is a single-precision floating-point number equal to 1.4426950216293335', function test( t ) { - t.equal( FLOAT32_LOG2E, 1.4426950216293335, 'equals 1.4426950216293335' ); + t.equal( FLOAT32_LOG2E, 1.4426950216293335, 'returns expected value' ); t.end(); }); diff --git a/lib/node_modules/@stdlib/constants/float32/max-base2-exponent/test/test.js b/lib/node_modules/@stdlib/constants/float32/max-base2-exponent/test/test.js index 3992620aa68c..13ff10573afb 100644 --- a/lib/node_modules/@stdlib/constants/float32/max-base2-exponent/test/test.js +++ b/lib/node_modules/@stdlib/constants/float32/max-base2-exponent/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, 127, 'equals 127' ); + t.equal( FLOAT32_MAX_BASE2_EXPONENT, 127, 'returns expected value' ); t.end(); }); diff --git a/lib/node_modules/@stdlib/constants/float32/max/test/test.js b/lib/node_modules/@stdlib/constants/float32/max/test/test.js index 8ac0100f526d..d9a6b95588c7 100644 --- a/lib/node_modules/@stdlib/constants/float32/max/test/test.js +++ b/lib/node_modules/@stdlib/constants/float32/max/test/test.js @@ -34,6 +34,6 @@ tape( 'main export is a number', function test( t ) { }); tape( 'export is equal to the maximum single-precision floating-point number', function test( t ) { - t.equal( FLOAT32_MAX, pow(2, 127) * (2-pow(2, -23)), 'equals max value' ); + t.equal( FLOAT32_MAX, pow(2, 127) * (2-pow(2, -23)), 'returns expected value' ); t.end(); });