File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
lib/node_modules/@stdlib/lapack/base/dlapy3/test Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff 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} ) ;
You can’t perform that action at this time.
0 commit comments