Skip to content

Commit 0ba1291

Browse files
authored
test: update messages
Signed-off-by: Athan <[email protected]>
1 parent 7f26f33 commit 0ba1291

File tree

1 file changed

+3
-3
lines changed
  • lib/node_modules/@stdlib/lapack/base/dlapy3/test

1 file changed

+3
-3
lines changed

lib/node_modules/@stdlib/lapack/base/dlapy3/test/test.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ tape( 'the function avoids overflow', function test( t ) {
7676
t.strictEqual( h, PINF, 'returns expected value' );
7777

7878
h = dlapy3( 1.0e308, 1.0e308, 1.0e308 );
79-
t.strictEqual( h, 1.7320508075688772e+308, 'avoids overflow' );
79+
t.strictEqual( h, 1.7320508075688772e+308, 'returns expected value' );
8080

8181
t.end();
8282
});
@@ -85,10 +85,10 @@ tape( 'the function avoids underflow', function test( t ) {
8585
var h;
8686

8787
h = sqrt( pow( 1.0e-200, 2 ) + pow( 1e-200, 2 ) + pow( 1e-200, 2 ) );
88-
t.strictEqual( h, 0.0, 'returns 0' );
88+
t.strictEqual( h, 0.0, 'returns expected value' );
8989

9090
h = dlapy3( 1.0e-200, 1.0e-200, 1.0e-200 );
91-
t.strictEqual( h, 1.7320508075688772e-200, 'avoids underflow' );
91+
t.strictEqual( h, 1.7320508075688772e-200, 'returns expected value' );
9292

9393
t.end();
9494
});

0 commit comments

Comments
 (0)