Skip to content

Commit ae65185

Browse files
committed
fix: test's
1 parent e498bea commit ae65185

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/node_modules/@stdlib/stats/nanrange/test/test.assign.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -604,7 +604,7 @@ tape( 'the function performs a reduction on an ndarray (no dimensions, row-major
604604
actual = nanrange( x, out, {
605605
'dims': []
606606
});
607-
expected = [ [ -1.0, 2.0 ], [ NaN, 4.0 ] ];
607+
expected = [ [ 0.0, 0.0 ], [ NaN, 0.0 ] ];
608608

609609
t.strictEqual( actual, out, 'returns expected value' );
610610

@@ -634,7 +634,7 @@ tape( 'the function performs a reduction on an ndarray (no dimensions, column-ma
634634
actual = nanrange( x, out, {
635635
'dims': []
636636
});
637-
expected = [ [ -1.0, NaN ], [ 2.0, 4.0 ] ];
637+
expected = [ [ 0.0, NaN ], [ 0.0, 0.0 ] ];
638638

639639
t.strictEqual( actual, out, 'returns expected value' );
640640

0 commit comments

Comments
 (0)