@@ -2695,8 +2695,8 @@ assert(NativeMath.pow(+Infinity, 0.0) == 1.0);
26952695assert ( NativeMath . pow ( - Infinity , 0.0 ) == 1.0 ) ;
26962696assert ( NativeMath . pow ( NaN , 0.0 ) == 1.0 ) ;
26972697
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 ) ) ;
27002700assert ( NativeMath . pow ( - 1.0 , 1.0 ) == - 1.0 ) ;
27012701assert ( NativeMath . pow ( + Infinity , 1.0 ) == + Infinity ) ;
27022702assert ( NativeMath . pow ( - Infinity , 1.0 ) == - Infinity ) ;
@@ -2707,8 +2707,8 @@ assert(NativeMath.pow(-0.0,-1.0) == -Infinity);
27072707assert ( NativeMath . pow ( - 1.0 , - 1.0 ) == - 1.0 ) ;
27082708assert ( NativeMath . pow ( 0.5 , - 1.0 ) == + 2.0 ) ;
27092709assert ( 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 ) ) ;
27122712assert ( isNaN ( NativeMath . pow ( NaN , - 1.0 ) ) ) ;
27132713
27142714assert ( NativeMath . pow ( + 0.0 , 2.0 ) == + 0.0 ) ;
0 commit comments