mirror of https://github.com/tc39/test262.git
fix for the wrong test of Intl.NumberFormat (ToRawFixed) (#856)
Note: 12344501000000000487815444678311936 === 12344501000000000000000000000000000 for binary64 floating points; Ref https://github.com/tc39/ecma402/issues/128
This commit is contained in:
parent
4546006977
commit
9fd3b582c7
|
@ -48,8 +48,8 @@ var testData = {
|
|||
"-0.0000000012344501": "-000.0",
|
||||
"123445.01": "123445.01",
|
||||
"-123445.01": "-123445.01",
|
||||
"12344501000000000000000000000000000": "12344501000000000000000000000000000.0",
|
||||
"-12344501000000000000000000000000000": "-12344501000000000000000000000000000.0"
|
||||
"12344501000000000000000000000000000": "12344501000000000487815444678311936.0",
|
||||
"-12344501000000000000000000000000000": "-12344501000000000487815444678311936.0"
|
||||
};
|
||||
|
||||
testNumberFormat(locales, numberingSystems,
|
||||
|
|
Loading…
Reference in New Issue