Skip to content

Commit e1e187a

Browse files
committed
chore: stuff from code review
1 parent a775abb commit e1e187a

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ var cinvf = require( './../lib' );
3535

3636
// VARIABLES //
3737

38-
var HUGE = 1e37;
39-
var TINY = -1e37;
38+
var HUGE = 1.0e37;
39+
var TINY = -1.0e37;
4040

4141

4242
// FIXTURES //

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@ var cinvf = tryRequire( resolve( __dirname, './../lib/native.js' ) );
4040
var opts = {
4141
'skip': ( cinvf instanceof Error )
4242
};
43-
var HUGE = 1e37;
44-
var TINY = -1e37;
43+
var HUGE = 1.0e37;
44+
var TINY = -1.0e37;
4545

4646

4747
// FIXTURES //

0 commit comments

Comments
 (0)