Skip to content

Commit 7d47099

Browse files
authored
Apply suggestions from code review
Signed-off-by: Athan <[email protected]>
1 parent 36d5959 commit 7d47099

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

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

6868
v = nanmax( 5.2, 3.14 );
69-
t.strictEqual( v, 5.2, 'returns max value' );
69+
t.strictEqual( v, 5.2, 'returns expected value' );
7070

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

7474
t.end();
7575
});

0 commit comments

Comments
 (0)