Skip to content
Snippets Groups Projects
Commit ca7018bc authored by Leo Balter's avatar Leo Balter Committed by Tom Care
Browse files

Use global values on typeof tests for Number values (#713)

This is a pure miscellaneous change to use global values of NaN and Infinity instead of their namespaced equivalents.
Ref https://github.com/tc39/test262/pull/690/files/9ae0567a50b4367cf0c692da947ed3613e2e35c3#r69049894
cc @suwc
parent 3868f8f7
No related branches found
No related tags found
No related merge requests found
......@@ -11,29 +11,29 @@ description: typeof (number value) === "number"
assert.sameValue(
typeof 1,
"number",
'#1: typeof 1 === "number". Actual: ' + (typeof 1)
'typeof 1 === "number". Actual: ' + (typeof 1)
);
assert.sameValue(
typeof Number.NaN,
typeof NaN,
"number",
'#2: typeof NaN === "number". Actual: ' + (typeof NaN)
'typeof NaN === "number". Actual: ' + (typeof NaN)
);
assert.sameValue(
typeof Number.POSITIVE_INFINITY,
typeof Infinity,
"number",
'#3: typeof Infinity === "number". Actual: ' + (typeof Infinity)
'typeof Infinity === "number". Actual: ' + (typeof Infinity)
);
assert.sameValue(
typeof Number.NEGATIVE_INFINITY,
typeof -Infinity,
"number",
'#4: typeof -Infinity === "number". Actual: ' + (typeof -Infinity)
'typeof -Infinity === "number". Actual: ' + (typeof -Infinity)
);
assert.sameValue(
typeof Math.PI,
"number",
'#5: typeof Math.PI === "number". Actual: ' + (typeof Math.PI)
'typeof Math.PI === "number". Actual: ' + (typeof Math.PI)
);
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment