@@ -2695,8 +2695,8 @@ assert(NativeMath.pow(+Infinity, 0.0) == 1.0);
2695
2695
assert ( NativeMath . pow ( - Infinity , 0.0 ) == 1.0 ) ;
2696
2696
assert ( NativeMath . pow ( NaN , 0.0 ) == 1.0 ) ;
2697
2697
2698
- assert ( NativeMath . pow ( + 0.0 , + 1.0 ) == + 0.0 ) ;
2699
- assert ( NativeMath . pow ( - 0.0 , + 1.0 ) == - 0.0 ) ;
2698
+ assert ( Object . is ( NativeMath . pow ( + 0.0 , + 1.0 ) , + 0.0 ) ) ;
2699
+ assert ( Object . is ( NativeMath . pow ( - 0.0 , + 1.0 ) , - 0.0 ) ) ;
2700
2700
assert ( NativeMath . pow ( - 1.0 , 1.0 ) == - 1.0 ) ;
2701
2701
assert ( NativeMath . pow ( + Infinity , 1.0 ) == + Infinity ) ;
2702
2702
assert ( NativeMath . pow ( - Infinity , 1.0 ) == - Infinity ) ;
@@ -2707,8 +2707,8 @@ assert(NativeMath.pow(-0.0,-1.0) == -Infinity);
2707
2707
assert ( NativeMath . pow ( - 1.0 , - 1.0 ) == - 1.0 ) ;
2708
2708
assert ( NativeMath . pow ( 0.5 , - 1.0 ) == + 2.0 ) ;
2709
2709
assert ( NativeMath . pow ( 1.0 , - 1.0 ) == + 1.0 ) ;
2710
- assert ( NativeMath . pow ( + Infinity , - 1.0 ) == + 0.0 ) ;
2711
- assert ( NativeMath . pow ( - Infinity , - 1.0 ) == - 0.0 ) ;
2710
+ assert ( Object . is ( NativeMath . pow ( + Infinity , - 1.0 ) , + 0.0 ) ) ;
2711
+ assert ( Object . is ( NativeMath . pow ( - Infinity , - 1.0 ) , - 0.0 ) ) ;
2712
2712
assert ( isNaN ( NativeMath . pow ( NaN , - 1.0 ) ) ) ;
2713
2713
2714
2714
assert ( NativeMath . pow ( + 0.0 , 2.0 ) == + 0.0 ) ;
0 commit comments