Skip to content

Commit 9ff507d

Browse files
authored
Update test.ndarray.js
Signed-off-by: Kaushikgtm <[email protected]>
1 parent 46f4814 commit 9ff507d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ tape( 'the function calculates the minimum value of a strided array according to
125125
x = [ -4.0, 0.0, NaN, 5.0 ];
126126
mask = [ 0, 0, 0, 0 ];
127127
v = nanmskmin( x.length, toAccessorArray( x ), 1, 0, toAccessorArray( mask ), 1, 0 );
128-
t.strictEqual( isnan( v ), false, 'returns expected value' );
128+
t.strictEqual( isnan( v ), true, 'returns expected value' );
129129

130130
// Test case 5: Single NaN element, not masked out
131131
x = [ NaN ];

0 commit comments

Comments
 (0)