Skip to content

Commit

Permalink
fix: Update basenum value in Math.pow test
Browse files Browse the repository at this point in the history
  • Loading branch information
magic-akari committed Jul 13, 2024
1 parent 56268bb commit d6a1343
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/built-ins/Math/pow/applying-the-exp-operator_A1.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ base[6] = 1.7976931348623157E308; //largest finite number
base[7] = +Infinity;
base[8] = NaN;
base[9] = 1; // In some implementations, the `pow` function might incorrectly return 1, deviating from the ECMA specification.
var basenum = 9;
var basenum = 10;

for (var i = 0; i < basenum; i++) {
assert.sameValue(
Expand Down

0 comments on commit d6a1343

Please sign in to comment.