Skip to content

Commit 0c37cb3

Browse files
authored
chore: update test messages in constants/float64
PR-URL: #6749 Reviewed-by: Philipp Burckhardt <[email protected]>
1 parent 93a9aa2 commit 0c37cb3

File tree

10 files changed

+11
-11
lines changed

10 files changed

+11
-11
lines changed

lib/node_modules/@stdlib/constants/float64/smallest-subnormal/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

3636
tape( 'the exported value equals the smallest double-precision floating-point denormalized value', function test( t ) {
37-
t.equal( FLOAT64_SMALLEST_SUBNORMAL, pow(2, -1022)*pow(2, -52), 'equals 2**-1022 * 2**-52' );
37+
t.equal( FLOAT64_SMALLEST_SUBNORMAL, pow(2, -1022)*pow(2, -52), 'returns expected value' );
3838
t.end();
3939
});

lib/node_modules/@stdlib/constants/float64/sqrt-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 square 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( pow( 2, -52 ) );
39-
t.equal( FLOAT64_SQRT_EPSILON, expected, 'equals sqrt(2**-52)' );
39+
t.equal( FLOAT64_SQRT_EPSILON, expected, 'returns expected value' );
4040
t.end();
4141
});

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

lib/node_modules/@stdlib/constants/float64/sqrt-half/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 is a double-precision floating-point number which equals the square root of 1/2', function test( t ) {
3737
var expected = sqrt( 1/2 );
38-
t.equal( SQRT_HALF, expected, 'equals sqrt(1/2)' );
38+
t.equal( SQRT_HALF, expected, 'returns expected value' );
3939
t.end();
4040
});

lib/node_modules/@stdlib/constants/float64/sqrt-phi/test/test.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,11 @@ tape( 'main export is a number', function test( t ) {
3535
});
3636

3737
tape( 'export is a double-precision floating-point number equal to 1.272019649514069', function test( t ) {
38-
t.equal( SQRT_PHI, 1.272019649514069, 'equals 1.272019649514069' );
38+
t.equal( SQRT_PHI, 1.272019649514069, 'returns expected value' );
3939
t.end();
4040
});
4141

4242
tape( 'the exported value equals sqrt(φ)', function test( t ) {
43-
t.equal( SQRT_PHI, sqrt(PHI), 'equals sqrt(φ)' );
43+
t.equal( SQRT_PHI, sqrt(PHI), 'returns expected value' );
4444
t.end();
4545
});

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

lib/node_modules/@stdlib/constants/float64/sqrt-three/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 is a double-precision floating-point number equal to the square root of 3', function test( t ) {
3737
var expected = sqrt( 3 );
38-
t.equal( SQRT3, expected, 'equals sqrt(3)' );
38+
t.equal( SQRT3, expected, 'returns expected value' );
3939
t.end();
4040
});

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

lib/node_modules/@stdlib/constants/float64/sqrt-two/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 is a double-precision floating-point number equal to the square root of 2', function test( t ) {
3737
var expected = sqrt( 2 );
38-
t.equal( SQRT2, expected, 'equals sqrt(2)' );
38+
t.equal( SQRT2, expected, 'returns expected value' );
3939
t.end();
4040
});

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

0 commit comments

Comments
 (0)