Skip to content

Commit d2bb173

Browse files
authored
Merge pull request #3 from Kaushikgtm/Kaushikgtm-patch-3
Address commit comments (commit b790b70) #5902
2 parents f07f239 + 9a14dd0 commit d2bb173

File tree

1 file changed

+1
-1
lines changed
  • lib/node_modules/@stdlib/stats/base/dists/levy/median/test

1 file changed

+1
-1
lines changed

lib/node_modules/@stdlib/stats/base/dists/levy/median/test/test.native.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ tape( 'main export is a function', opts, function test( t ) {
5353

5454
tape( 'if provided `NaN` for any parameter, the function returns `NaN`', opts, function test( t ) {
5555
var y = median( NaN, 1.0 );
56-
t.equal( isnan( y ), true, 'returns NaN' );
56+
t.equal( isnan( y ), true, 'returns expected value' );
5757
y = median( 1.0, NaN );
5858
t.equal( isnan( y ), true, 'returns NaN' );
5959
t.end();

0 commit comments

Comments
 (0)