Skip to content

Commit 2dc55d3

Browse files
authored
test: update messages
Signed-off-by: Athan <[email protected]>
1 parent 7d47099 commit 2dc55d3

File tree

1 file changed

+2
-2
lines changed
  • lib/node_modules/@stdlib/math/base/special/nanmax/test

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,10 +57,10 @@ tape( 'the function returns the maximum value', function test( t ) {
5757
var v;
5858

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

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

6565
t.end();
6666
});

0 commit comments

Comments
 (0)