We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ba32561 commit c478885Copy full SHA for c478885
lib/node_modules/@stdlib/stats/base/ndarray/nanminabs/test/test.js
@@ -68,7 +68,7 @@ tape( 'the function calculates the minimum absolute value of a one-dimensional n
68
x = [ -4.0, NaN, -5.0 ];
69
v = nanminabs( [ vector( x, 3, 1, 0 ) ] );
70
t.strictEqual( v, 4.0, 'returns expected value' );
71
-
+
72
x = [ -0.0, 0.0, NaN, -0.0 ];
73
v = nanminabs( [ vector( x, 4, 1, 0 ) ] );
74
t.strictEqual( isPositiveZero( v ), true, 'returns expected value' );
0 commit comments