From 2c26f98bd5b7a615700f4a71c628a445da68dd98 Mon Sep 17 00:00:00 2001 From: Claude Date: Sat, 27 Jun 2026 20:11:00 +0000 Subject: [PATCH 1/2] test: fix precision qualifier in `constants/float32/phi` Changes the `tape` description from "double-precision" to "single-precision" to match the float32 namespace (88% conformance across siblings using the qualifier). The assertion already verifies the float32-coerced value via `float64ToFloat32`; only the test description carried over from the float64 sibling. --- lib/node_modules/@stdlib/constants/float32/phi/test/test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/node_modules/@stdlib/constants/float32/phi/test/test.js b/lib/node_modules/@stdlib/constants/float32/phi/test/test.js index 484c07bd4810..cc36e23911a1 100644 --- a/lib/node_modules/@stdlib/constants/float32/phi/test/test.js +++ b/lib/node_modules/@stdlib/constants/float32/phi/test/test.js @@ -34,7 +34,7 @@ tape( 'main export is a number', function test( t ) { t.end(); }); -tape( 'export is a double-precision floating-point number equal to 1.6180340051651', function test( t ) { +tape( 'export is a single-precision floating-point number equal to 1.6180340051651', function test( t ) { t.strictEqual( FLOAT32_PHI, float64ToFloat32( 1.618033988749895 ), 'returns expected value' ); t.end(); }); From 246d320fff90d515591c9ec013820af081d5f281 Mon Sep 17 00:00:00 2001 From: Claude Date: Sat, 27 Jun 2026 20:11:06 +0000 Subject: [PATCH 2/2] test: fix precision qualifier in `constants/float32/pi-squared` Changes the `tape` description from "double-precision" to "single-precision" to match the float32 namespace (88% conformance across siblings using the qualifier). The assertion already verifies the float32-rounded literal `9.869604110717773`; only the test description carried over from the float64 sibling. --- .../@stdlib/constants/float32/pi-squared/test/test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/node_modules/@stdlib/constants/float32/pi-squared/test/test.js b/lib/node_modules/@stdlib/constants/float32/pi-squared/test/test.js index b8c0a0fdf18a..78adcdb808b2 100644 --- a/lib/node_modules/@stdlib/constants/float32/pi-squared/test/test.js +++ b/lib/node_modules/@stdlib/constants/float32/pi-squared/test/test.js @@ -37,7 +37,7 @@ tape( 'main export is a number', function test( t ) { t.end(); }); -tape( 'export is a double-precision floating-point number equal to 9.869604110717773', function test( t ) { +tape( 'export is a single-precision floating-point number equal to 9.869604110717773', function test( t ) { t.strictEqual( FLOAT32_PI_SQUARED, 9.869604110717773, 'returns expected value' ); t.end(); });