Skip to content

Commit 9b9c746

Browse files
authored
chore: update test messages in constants/float32
PR-URL: #6773 Reviewed-by: Philipp Burckhardt <[email protected]>
1 parent 2e8998e commit 9b9c746

File tree

22 files changed

+24
-24
lines changed

22 files changed

+24
-24
lines changed

lib/node_modules/@stdlib/constants/float32/max-base10-exponent-subnormal/test/test.js

Lines changed: 1 addition & 1 deletion
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 `-38`', function test( t ) {
36-
t.equal( FLOAT32_MAX_BASE10_EXPONENT_SUBNORMAL, -38, 'equals -38' );
36+
t.equal( FLOAT32_MAX_BASE10_EXPONENT_SUBNORMAL, -38, 'returns expected value' );
3737
t.end();
3838
});

lib/node_modules/@stdlib/constants/float32/max-base10-exponent/test/test.js

Lines changed: 1 addition & 1 deletion
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 `38`', function test( t ) {
36-
t.equal( FLOAT32_MAX_BASE10_EXPONENT, 38, 'equals 38' );
36+
t.equal( FLOAT32_MAX_BASE10_EXPONENT, 38, 'returns expected value' );
3737
t.end();
3838
});

lib/node_modules/@stdlib/constants/float32/max-base2-exponent-subnormal/test/test.js

Lines changed: 1 addition & 1 deletion
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 -127', function test( t ) {
36-
t.equal( FLOAT32_MAX_BASE2_EXPONENT_SUBNORMAL, -127, 'equals -127' );
36+
t.equal( FLOAT32_MAX_BASE2_EXPONENT_SUBNORMAL, -127, 'returns expected value' );
3737
t.end();
3838
});

lib/node_modules/@stdlib/constants/float32/max-safe-integer/test/test.js

Lines changed: 1 addition & 1 deletion
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 is 2**24-1', function test( t ) {
37-
t.equal( FLOAT32_MAX_SAFE_INTEGER, pow( 2, 24 )-1, 'returns 2**24-1' );
37+
t.equal( FLOAT32_MAX_SAFE_INTEGER, pow( 2, 24 )-1, 'returns expected value' );
3838
t.end();
3939
});

lib/node_modules/@stdlib/constants/float32/min-base10-exponent-subnormal/test/test.js

Lines changed: 1 addition & 1 deletion
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 `-45`', function test( t ) {
36-
t.equal( FLOAT32_MIN_BASE10_EXPONENT_SUBNORMAL, -45, 'equals -45' );
36+
t.equal( FLOAT32_MIN_BASE10_EXPONENT_SUBNORMAL, -45, 'returns expected value' );
3737
t.end();
3838
});

lib/node_modules/@stdlib/constants/float32/min-base10-exponent/test/test.js

Lines changed: 1 addition & 1 deletion
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 `-37`', function test( t ) {
36-
t.equal( FLOAT32_MIN_BASE10_EXPONENT, -37, 'equals -37' );
36+
t.equal( FLOAT32_MIN_BASE10_EXPONENT, -37, 'returns expected value' );
3737
t.end();
3838
});

lib/node_modules/@stdlib/constants/float32/min-base2-exponent-subnormal/test/test.js

Lines changed: 1 addition & 1 deletion
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 -149', function test( t ) {
36-
t.equal( FLOAT32_MIN_BASE2_EXPONENT_SUBNORMAL, -149, 'equals -149' );
36+
t.equal( FLOAT32_MIN_BASE2_EXPONENT_SUBNORMAL, -149, 'returns expected value' );
3737
t.end();
3838
});

lib/node_modules/@stdlib/constants/float32/min-base2-exponent/test/test.js

Lines changed: 1 addition & 1 deletion
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 `-126`', function test( t ) {
36-
t.equal( FLOAT32_MIN_BASE2_EXPONENT, -126, 'equals -126' );
36+
t.equal( FLOAT32_MIN_BASE2_EXPONENT, -126, 'returns expected value' );
3737
t.end();
3838
});

lib/node_modules/@stdlib/constants/float32/min-safe-integer/test/test.js

Lines changed: 1 addition & 1 deletion
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 is -2**24+1', function test( t ) {
37-
t.equal( FLOAT32_MIN_SAFE_INTEGER, -pow( 2, 24 )+1, 'returns -2**24+1' );
37+
t.equal( FLOAT32_MIN_SAFE_INTEGER, -pow( 2, 24 )+1, 'returns expected value' );
3838
t.end();
3939
});

lib/node_modules/@stdlib/constants/float32/ninf/test/test.js

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

3636
tape( 'export is equal to negative infinity', function test( t ) {
3737
// Note: we rely on implicit type promotion. A 32-bit infinity should be promoted to a 64-bit infinity...
38-
t.equal( FLOAT32_NINF, Number.NEGATIVE_INFINITY, 'equals -infinity' );
38+
t.equal( FLOAT32_NINF, Number.NEGATIVE_INFINITY, 'returns expected value' );
3939
t.end();
4040
});

0 commit comments

Comments
 (0)