Skip to content

Commit

Permalink
test: update messages
Browse files Browse the repository at this point in the history
Signed-off-by: Athan <[email protected]>
  • Loading branch information
kgryte authored Oct 23, 2024
1 parent 7d47099 commit 2dc55d3
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -57,10 +57,10 @@ tape( 'the function returns the maximum value', function test( t ) {
var v;

v = nanmax( 5.2, 3.14 );
t.strictEqual( v, 5.2, 'returns max value' );
t.strictEqual( v, 5.2, 'returns expected value' );

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

t.end();
});

0 comments on commit 2dc55d3

Please sign in to comment.