diff --git a/lib/node_modules/@stdlib/constants/float64/glaisher-kinkelin/test/test.js b/lib/node_modules/@stdlib/constants/float64/glaisher-kinkelin/test/test.js index 72ebf1aa8374..44c88419ed85 100644 --- a/lib/node_modules/@stdlib/constants/float64/glaisher-kinkelin/test/test.js +++ b/lib/node_modules/@stdlib/constants/float64/glaisher-kinkelin/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.2824271291006226`', function test( t ) { - t.equal( A, 1.2824271291006226, 'returns 1.2824271291006226' ); + t.equal( A, 1.2824271291006226, 'returns expected value' ); t.end(); }); diff --git a/lib/node_modules/@stdlib/constants/float64/half-ln-two/test/test.js b/lib/node_modules/@stdlib/constants/float64/half-ln-two/test/test.js index 91be9b998b5b..094a06573a39 100644 --- a/lib/node_modules/@stdlib/constants/float64/half-ln-two/test/test.js +++ b/lib/node_modules/@stdlib/constants/float64/half-ln-two/test/test.js @@ -36,7 +36,7 @@ tape( 'main export is a number', function test( t ) { }); tape( 'export is a double-precision floating-point number equal to `3.46573590279972654709e-01`', function test( t ) { - t.equal( HALF_LN2, 3.46573590279972654709e-01, 'equals 3.46573590279972654709e-01' ); + t.equal( HALF_LN2, 3.46573590279972654709e-01, 'returns expected value' ); t.end(); }); diff --git a/lib/node_modules/@stdlib/constants/float64/half-pi/test/test.js b/lib/node_modules/@stdlib/constants/float64/half-pi/test/test.js index 9d357b4633df..fd1fd647d9a1 100644 --- a/lib/node_modules/@stdlib/constants/float64/half-pi/test/test.js +++ b/lib/node_modules/@stdlib/constants/float64/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.5707963267948966', function test( t ) { - t.equal( HALF_PI, 1.5707963267948966, 'equals 1.5707963267948966' ); + t.equal( HALF_PI, 1.5707963267948966, 'returns expected value' ); t.end(); }); diff --git a/lib/node_modules/@stdlib/constants/float64/ln-half/test/test.js b/lib/node_modules/@stdlib/constants/float64/ln-half/test/test.js index ea492401d994..a429b8d043e6 100644 --- a/lib/node_modules/@stdlib/constants/float64/ln-half/test/test.js +++ b/lib/node_modules/@stdlib/constants/float64/ln-half/test/test.js @@ -36,7 +36,7 @@ tape( 'main export is a number', function test( t ) { }); tape( 'export is a double-precision floating-point number equal to `-0.6931471805599453`', function test( t ) { - t.equal( LN_HALF, -0.6931471805599453, 'equals -0.6931471805599453' ); + t.equal( LN_HALF, -0.6931471805599453, 'returns expected value' ); t.end(); }); diff --git a/lib/node_modules/@stdlib/constants/float64/ln-pi/test/test.js b/lib/node_modules/@stdlib/constants/float64/ln-pi/test/test.js index f0e6a3cf9b5b..aa6d4212c474 100644 --- a/lib/node_modules/@stdlib/constants/float64/ln-pi/test/test.js +++ b/lib/node_modules/@stdlib/constants/float64/ln-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.1447298858494002', function test( t ) { - t.equal( LN_PI, 1.1447298858494002, 'equals 1.1447298858494002' ); + t.equal( LN_PI, 1.1447298858494002, 'returns expected value' ); t.end(); }); diff --git a/lib/node_modules/@stdlib/constants/float64/ln-sqrt-two-pi/test/test.js b/lib/node_modules/@stdlib/constants/float64/ln-sqrt-two-pi/test/test.js index e2e5fbde4911..7e9c5ae2ad53 100644 --- a/lib/node_modules/@stdlib/constants/float64/ln-sqrt-two-pi/test/test.js +++ b/lib/node_modules/@stdlib/constants/float64/ln-sqrt-two-pi/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 0.9189385332046728', function test( t ) { - t.equal( LN_SQRT_TWO_PI, 0.9189385332046728, 'equals 0.9189385332046728' ); + t.equal( LN_SQRT_TWO_PI, 0.9189385332046728, 'returns expected value' ); t.end(); }); diff --git a/lib/node_modules/@stdlib/constants/float64/ln-ten/test/test.js b/lib/node_modules/@stdlib/constants/float64/ln-ten/test/test.js index a816569bcab5..9156b6f0c2c2 100644 --- a/lib/node_modules/@stdlib/constants/float64/ln-ten/test/test.js +++ b/lib/node_modules/@stdlib/constants/float64/ln-ten/test/test.js @@ -36,7 +36,7 @@ tape( 'main export is a number', function test( t ) { }); tape( 'export is a double-precision floating-point number equal to `2.302585092994046`', function test( t ) { - t.equal( LN10, 2.302585092994046, 'equals 2.302585092994046' ); + t.equal( LN10, 2.302585092994046, 'returns expected value' ); t.end(); }); diff --git a/lib/node_modules/@stdlib/constants/float64/ln-two-pi/test/test.js b/lib/node_modules/@stdlib/constants/float64/ln-two-pi/test/test.js index fc28cd0b6a88..cba10aa7aa86 100644 --- a/lib/node_modules/@stdlib/constants/float64/ln-two-pi/test/test.js +++ b/lib/node_modules/@stdlib/constants/float64/ln-two-pi/test/test.js @@ -37,7 +37,7 @@ tape( 'main export is a number', function test( t ) { }); tape( 'export is a double-precision floating-point number equal to `1.8378770664093456`', function test( t ) { - t.equal( LN_TWO_PI, 1.8378770664093456, 'equals 1.8378770664093456' ); + t.equal( LN_TWO_PI, 1.8378770664093456, 'returns expected value' ); t.end(); }); diff --git a/lib/node_modules/@stdlib/constants/float64/ln-two/test/test.js b/lib/node_modules/@stdlib/constants/float64/ln-two/test/test.js index 106c92247655..bc44dfe270de 100644 --- a/lib/node_modules/@stdlib/constants/float64/ln-two/test/test.js +++ b/lib/node_modules/@stdlib/constants/float64/ln-two/test/test.js @@ -36,7 +36,7 @@ tape( 'main export is a number', function test( t ) { }); tape( 'export is a double-precision floating-point number equal to `0.6931471805599453`', function test( t ) { - t.equal( LN2, 0.6931471805599453, 'equals 0.6931471805599453' ); + t.equal( LN2, 0.6931471805599453, 'returns expected value' ); t.end(); }); diff --git a/lib/node_modules/@stdlib/constants/float64/log10-e/test/test.js b/lib/node_modules/@stdlib/constants/float64/log10-e/test/test.js index 4eb55ebc846f..1b7bf4ab2d14 100644 --- a/lib/node_modules/@stdlib/constants/float64/log10-e/test/test.js +++ b/lib/node_modules/@stdlib/constants/float64/log10-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 0.4342944819032518', function test( t ) { - t.equal( LOG10E, 0.4342944819032518, 'equals 0.4342944819032518' ); + t.equal( LOG10E, 0.4342944819032518, 'returns expected value' ); t.end(); }); diff --git a/lib/node_modules/@stdlib/constants/float64/log2-e/test/test.js b/lib/node_modules/@stdlib/constants/float64/log2-e/test/test.js index e1f80fc72a5c..3e4b72324521 100644 --- a/lib/node_modules/@stdlib/constants/float64/log2-e/test/test.js +++ b/lib/node_modules/@stdlib/constants/float64/log2-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 1.4426950408889634', function test( t ) { - t.equal( LOG2E, 1.4426950408889634, 'equals 1.4426950408889634' ); + t.equal( LOG2E, 1.4426950408889634, 'returns expected value' ); t.end(); }); diff --git a/lib/node_modules/@stdlib/constants/float64/max-base10-exponent/test/test.js b/lib/node_modules/@stdlib/constants/float64/max-base10-exponent/test/test.js index 3f917f2e65d0..3c9bbc99db30 100644 --- a/lib/node_modules/@stdlib/constants/float64/max-base10-exponent/test/test.js +++ b/lib/node_modules/@stdlib/constants/float64/max-base10-exponent/test/test.js @@ -33,6 +33,6 @@ tape( 'main export is a number', function test( t ) { }); tape( 'the exported value is `308`', function test( t ) { - t.equal( FLOAT64_MAX_BASE10_EXPONENT, 308, 'equals 308' ); + t.equal( FLOAT64_MAX_BASE10_EXPONENT, 308, 'returns expected value' ); t.end(); }); diff --git a/lib/node_modules/@stdlib/constants/float64/max-base2-exponent-subnormal/test/test.js b/lib/node_modules/@stdlib/constants/float64/max-base2-exponent-subnormal/test/test.js index 8c1b12d6c2a1..362d64667463 100644 --- a/lib/node_modules/@stdlib/constants/float64/max-base2-exponent-subnormal/test/test.js +++ b/lib/node_modules/@stdlib/constants/float64/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 -1023', function test( t ) { - t.equal( FLOAT64_MAX_BASE2_EXPONENT_SUBNORMAL, -1023, 'equals -1023' ); + t.equal( FLOAT64_MAX_BASE2_EXPONENT_SUBNORMAL, -1023, 'returns expected value' ); t.end(); }); diff --git a/lib/node_modules/@stdlib/constants/float64/max-base2-exponent/test/test.js b/lib/node_modules/@stdlib/constants/float64/max-base2-exponent/test/test.js index abef6205ebf8..b2fd993c6461 100644 --- a/lib/node_modules/@stdlib/constants/float64/max-base2-exponent/test/test.js +++ b/lib/node_modules/@stdlib/constants/float64/max-base2-exponent/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_MAX_BASE2_EXPONENT, 1023, 'equals 1023' ); + t.equal( FLOAT64_MAX_BASE2_EXPONENT, 1023, 'returns expected value' ); t.end(); });