Skip to content

Commit 6847363

Browse files
authored
chore: update test messages in constants/float64
PR-URL: #6747 Co-authored-by: hrshya <[email protected]> Reviewed-by: Philipp Burckhardt <[email protected]>
1 parent a41f30e commit 6847363

File tree

14 files changed

+14
-14
lines changed

14 files changed

+14
-14
lines changed

lib/node_modules/@stdlib/constants/float64/glaisher-kinkelin/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.2824271291006226`', function test( t ) {
36-
t.equal( A, 1.2824271291006226, 'returns 1.2824271291006226' );
36+
t.equal( A, 1.2824271291006226, 'returns expected value' );
3737
t.end();
3838
});

lib/node_modules/@stdlib/constants/float64/half-ln-two/test/test.js

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

3838
tape( 'export is a double-precision floating-point number equal to `3.46573590279972654709e-01`', function test( t ) {
39-
t.equal( HALF_LN2, 3.46573590279972654709e-01, 'equals 3.46573590279972654709e-01' );
39+
t.equal( HALF_LN2, 3.46573590279972654709e-01, 'returns expected value' );
4040
t.end();
4141
});
4242

lib/node_modules/@stdlib/constants/float64/half-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 1.5707963267948966', function test( t ) {
36-
t.equal( HALF_PI, 1.5707963267948966, 'equals 1.5707963267948966' );
36+
t.equal( HALF_PI, 1.5707963267948966, 'returns expected value' );
3737
t.end();
3838
});

lib/node_modules/@stdlib/constants/float64/ln-half/test/test.js

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

3838
tape( 'export is a double-precision floating-point number equal to `-0.6931471805599453`', function test( t ) {
39-
t.equal( LN_HALF, -0.6931471805599453, 'equals -0.6931471805599453' );
39+
t.equal( LN_HALF, -0.6931471805599453, 'returns expected value' );
4040
t.end();
4141
});
4242

lib/node_modules/@stdlib/constants/float64/ln-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 1.1447298858494002', function test( t ) {
36-
t.equal( LN_PI, 1.1447298858494002, 'equals 1.1447298858494002' );
36+
t.equal( LN_PI, 1.1447298858494002, 'returns expected value' );
3737
t.end();
3838
});

lib/node_modules/@stdlib/constants/float64/ln-sqrt-two-pi/test/test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ tape( 'main export is a number', function test( t ) {
3838
});
3939

4040
tape( 'export is a double-precision floating-point number equal to 0.9189385332046728', function test( t ) {
41-
t.equal( LN_SQRT_TWO_PI, 0.9189385332046728, 'equals 0.9189385332046728' );
41+
t.equal( LN_SQRT_TWO_PI, 0.9189385332046728, 'returns expected value' );
4242
t.end();
4343
});
4444

lib/node_modules/@stdlib/constants/float64/ln-ten/test/test.js

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

3838
tape( 'export is a double-precision floating-point number equal to `2.302585092994046`', function test( t ) {
39-
t.equal( LN10, 2.302585092994046, 'equals 2.302585092994046' );
39+
t.equal( LN10, 2.302585092994046, 'returns expected value' );
4040
t.end();
4141
});
4242

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ tape( 'main export is a number', function test( t ) {
3737
});
3838

3939
tape( 'export is a double-precision floating-point number equal to `1.8378770664093456`', function test( t ) {
40-
t.equal( LN_TWO_PI, 1.8378770664093456, 'equals 1.8378770664093456' );
40+
t.equal( LN_TWO_PI, 1.8378770664093456, 'returns expected value' );
4141
t.end();
4242
});
4343

lib/node_modules/@stdlib/constants/float64/ln-two/test/test.js

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

3838
tape( 'export is a double-precision floating-point number equal to `0.6931471805599453`', function test( t ) {
39-
t.equal( LN2, 0.6931471805599453, 'equals 0.6931471805599453' );
39+
t.equal( LN2, 0.6931471805599453, 'returns expected value' );
4040
t.end();
4141
});
4242

lib/node_modules/@stdlib/constants/float64/log10-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 0.4342944819032518', function test( t ) {
36-
t.equal( LOG10E, 0.4342944819032518, 'equals 0.4342944819032518' );
36+
t.equal( LOG10E, 0.4342944819032518, 'returns expected value' );
3737
t.end();
3838
});

lib/node_modules/@stdlib/constants/float64/log2-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 1.4426950408889634', function test( t ) {
36-
t.equal( LOG2E, 1.4426950408889634, 'equals 1.4426950408889634' );
36+
t.equal( LOG2E, 1.4426950408889634, 'returns expected value' );
3737
t.end();
3838
});

lib/node_modules/@stdlib/constants/float64/max-base10-exponent/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 `308`', function test( t ) {
36-
t.equal( FLOAT64_MAX_BASE10_EXPONENT, 308, 'equals 308' );
36+
t.equal( FLOAT64_MAX_BASE10_EXPONENT, 308, 'returns expected value' );
3737
t.end();
3838
});

lib/node_modules/@stdlib/constants/float64/max-base2-exponent-subnormal/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_MAX_BASE2_EXPONENT_SUBNORMAL, -1023, 'equals -1023' );
36+
t.equal( FLOAT64_MAX_BASE2_EXPONENT_SUBNORMAL, -1023, 'returns expected value' );
3737
t.end();
3838
});

lib/node_modules/@stdlib/constants/float64/max-base2-exponent/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_MAX_BASE2_EXPONENT, 1023, 'equals 1023' );
36+
t.equal( FLOAT64_MAX_BASE2_EXPONENT, 1023, 'returns expected value' );
3737
t.end();
3838
});

0 commit comments

Comments
 (0)