Skip to content

Commit fde222f

Browse files
authored
test: use single-precision utils
Signed-off-by: Athan <kgryte@gmail.com>
1 parent ece0def commit fde222f

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

  • lib/node_modules/@stdlib/stats/base/ndarray/sdsmeanors/test

lib/node_modules/@stdlib/stats/base/ndarray/sdsmeanors/test/test.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
var tape = require( 'tape' );
2424
var Float32Array = require( '@stdlib/array/float32' );
2525
var isnanf = require( '@stdlib/math/base/assert/is-nanf' );
26-
var isPositiveZero = require( '@stdlib/math/base/assert/is-positive-zero' );
26+
var isPositiveZerof = require( '@stdlib/math/base/assert/is-positive-zerof' );
2727
var ndarray = require( '@stdlib/ndarray/base/ctor' );
2828
var sdsmeanors = require( './../lib' );
2929

@@ -72,7 +72,7 @@ tape( 'the function calculates the arithmetic mean of a one-dimensional ndarray'
7272

7373
x = new Float32Array( [ -0.0, 0.0, -0.0 ] );
7474
v = sdsmeanors( [ vector( x, 3, 1, 0 ) ] );
75-
t.strictEqual( isPositiveZero( v ), true, 'returns expected value' );
75+
t.strictEqual( isPositiveZerof( v ), true, 'returns expected value' );
7676

7777
x = new Float32Array( [ NaN ] );
7878
v = sdsmeanors( [ vector( x, 1, 1, 0 ) ] );

0 commit comments

Comments
 (0)