Skip to content

Commit 3275ec2

Browse files
authored
chore: update test messages in constants/float64
PR-URL: #6728 Reviewed-by: Athan Reines <[email protected]>
1 parent 00450cc commit 3275ec2

File tree

10 files changed

+10
-10
lines changed

10 files changed

+10
-10
lines changed

lib/node_modules/@stdlib/constants/float64/apery/test/test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,6 @@ tape( 'main export is a number', function test( t ) {
3333
});
3434

3535
tape( 'the exported value is a double-precision floating-point number equal to 1.2020569031595942', function test( t ) {
36-
t.equal( APERY, 1.2020569031595942, 'returns 1.2020569031595942' );
36+
t.equal( APERY, 1.2020569031595942, 'returns expected value' );
3737
t.end();
3838
});

lib/node_modules/@stdlib/constants/float64/catalan/test/test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,6 @@ tape( 'main export is a number', function test( t ) {
3333
});
3434

3535
tape( 'the exported value is a double-precision floating-point number equal to 0.915965594177219', function test( t ) {
36-
t.equal( CATALAN, 0.915965594177219, 'returns 0.915965594177219' );
36+
t.equal( CATALAN, 0.915965594177219, 'returns expected value' );
3737
t.end();
3838
});

lib/node_modules/@stdlib/constants/float64/cbrt-eps/test/test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,6 @@ tape( 'main export is a number', function test( t ) {
3636

3737
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 ) {
3838
var expected = cbrt( pow( 2, -52 ) );
39-
t.equal( FLOAT64_CBRT_EPSILON, expected, 'equals cbrt(2**-52)' );
39+
t.equal( FLOAT64_CBRT_EPSILON, expected, 'returns expected value' );
4040
t.end();
4141
});

lib/node_modules/@stdlib/constants/float64/e/test/test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,6 @@ tape( 'main export is a number', function test( t ) {
3333
});
3434

3535
tape( 'export is a double-precision floating-point number equal to 2.718281828459045', function test( t ) {
36-
t.equal( E, 2.718281828459045, 'equals 2.718281828459045' );
36+
t.equal( E, 2.718281828459045, 'returns expected value' );
3737
t.end();
3838
});

lib/node_modules/@stdlib/constants/float64/eps/test/test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,6 @@ tape( 'main export is a number', function test( t ) {
3535

3636
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 ) {
3737
var expected = pow( 2, -52 );
38-
t.equal( FLOAT64_EPSILON, expected, 'equals 2**-52' );
38+
t.equal( FLOAT64_EPSILON, expected, 'returns expected value' );
3939
t.end();
4040
});

lib/node_modules/@stdlib/constants/float64/eulergamma/test/test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,6 @@ tape( 'main export is a number', function test( t ) {
3333
});
3434

3535
tape( 'the exported value is a double-precision floating-point number equal to 0.5772156649015329', function test( t ) {
36-
t.equal( EULERGAMMA, 0.5772156649015329, 'returns 0.5772156649015329' );
36+
t.equal( EULERGAMMA, 0.5772156649015329, 'returns expected value' );
3737
t.end();
3838
});

lib/node_modules/@stdlib/constants/float64/exponent-bias/test/test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,6 @@ tape( 'main export is a number', function test( t ) {
3333
});
3434

3535
tape( 'the exported value is 1023', function test( t ) {
36-
t.equal( FLOAT64_EXPONENT_BIAS, 1023, 'equals 1023' );
36+
t.equal( FLOAT64_EXPONENT_BIAS, 1023, 'returns expected value' );
3737
t.end();
3838
});

lib/node_modules/@stdlib/constants/float64/fourth-pi/test/test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,6 @@ tape( 'main export is a number', function test( t ) {
3333
});
3434

3535
tape( 'export is a double-precision floating-point number equal to 7.85398163397448309616e-1', function test( t ) {
36-
t.equal( FOURTH_PI, 7.85398163397448309616e-1, 'equals 7.85398163397448309616e-1' );
36+
t.equal( FOURTH_PI, 7.85398163397448309616e-1, 'returns expected value' );
3737
t.end();
3838
});

lib/node_modules/@stdlib/constants/float64/fourth-root-eps/test/test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,6 @@ tape( 'main export is a number', function test( t ) {
3636

3737
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 ) {
3838
var expected = sqrt( sqrt( pow( 2, -52 ) ) );
39-
t.equal( FLOAT64_FOURTH_ROOT_EPS, expected, 'equals sqrt( sqrt(2**-52) )' );
39+
t.equal( FLOAT64_FOURTH_ROOT_EPS, expected, 'returns expected value' );
4040
t.end();
4141
});

lib/node_modules/@stdlib/constants/float64/gamma-lanczos-g/test/test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,6 @@ tape( 'main export is a number', function test( t ) {
3434

3535
tape( 'the exported value equals `10.900511`', function test( t ) {
3636
var expected = 10.900511;
37-
t.strictEqual( FLOAT64_GAMMA_LANCZOS_G, expected, 'equals 10.900511' );
37+
t.strictEqual( FLOAT64_GAMMA_LANCZOS_G, expected, 'returns expected value' );
3838
t.end();
3939
});

0 commit comments

Comments
 (0)