Skip to content

Commit 35820ac

Browse files
authored
Update test.js
Signed-off-by: Gunj Joshi <[email protected]>
1 parent cdfcf8e commit 35820ac

File tree

1 file changed

+5
-5
lines changed
  • lib/node_modules/@stdlib/math/base/special/nanmin/test

1 file changed

+5
-5
lines changed

lib/node_modules/@stdlib/math/base/special/nanmin/test/test.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -37,18 +37,18 @@ tape( 'the function returns `NaN` if both operands are `NaN`', function test( t
3737
var v;
3838

3939
v = nanmin( NaN, NaN );
40-
t.strictEqual( isnan( v ), true, 'returns NaN value' );
40+
t.strictEqual( isnan( v ), true, 'returns expected value' );
4141
t.end();
4242
});
4343

4444
tape( 'the function returns the non-NaN value if one of the operands is `NaN`', function test( t ) {
4545
var v;
4646

4747
v = nanmin( NaN, 3.14 );
48-
t.strictEqual( v, 3.14, 'returns not NaN value' );
48+
t.strictEqual( v, 3.14, 'returns expected value' );
4949

5050
v = nanmin( 4.2, NaN );
51-
t.strictEqual( v, 4.2, 'returns not NaN value' );
51+
t.strictEqual( v, 4.2, 'returns expected value' );
5252

5353
t.end();
5454
});
@@ -57,10 +57,10 @@ tape( 'the function returns the minimum value', function test( t ) {
5757
var v;
5858

5959
v = nanmin( 5.2, 3.14 );
60-
t.strictEqual( v, 3.14, 'returns min value' );
60+
t.strictEqual( v, 3.14, 'returns expected value' );
6161

6262
v = nanmin( -4.2, 3.14 );
63-
t.strictEqual( v, -4.2, 'returns min value' );
63+
t.strictEqual( v, -4.2, 'returns expected value' );
6464

6565
t.end();
6666
});

0 commit comments

Comments
 (0)