diff --git a/lib/node_modules/@stdlib/math/base/special/ceilb/test/test.js b/lib/node_modules/@stdlib/math/base/special/ceilb/test/test.js index b216670b859d..5ffe45c3a73e 100644 --- a/lib/node_modules/@stdlib/math/base/special/ceilb/test/test.js +++ b/lib/node_modules/@stdlib/math/base/special/ceilb/test/test.js @@ -163,7 +163,7 @@ tape( 'the function supports rounding a numeric value to a desired number of dec tape( 'due to floating-point rounding error, rounding a numeric value can result in unexpected behavior', function test( t ) { var x; - x = 0.2 + 0.1; // => 0.30000000000000004 + x = 0.2 + 0.1; // returns 0.30000000000000004 t.strictEqual( ceilb( x, -16, 10 ), 0.3000000000000001, 'equals 0.3000000000000001 and not 0.3' ); x = 24.616838129811768; diff --git a/lib/node_modules/@stdlib/math/base/special/ceilb/test/test.native.js b/lib/node_modules/@stdlib/math/base/special/ceilb/test/test.native.js index b07c09a89bda..1d3e65511015 100644 --- a/lib/node_modules/@stdlib/math/base/special/ceilb/test/test.native.js +++ b/lib/node_modules/@stdlib/math/base/special/ceilb/test/test.native.js @@ -129,7 +129,7 @@ tape( 'the function supports rounding a numeric value to a desired number of dec tape( 'due to floating-point rounding error, rounding a numeric value can result in unexpected behavior', opts, function test( t ) { var x; - x = 0.2 + 0.1; // => 0.30000000000000004 + x = 0.2 + 0.1; // returns 0.30000000000000004 t.strictEqual( ceilb( x, -16, 10 ), 0.3000000000000001, 'equals 0.3000000000000001 and not 0.3' ); x = 24.616838129811768;