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 9ae0567a50 (r69049894)
cc @suwc
This commit is contained in:
Leo Balter 2016-07-06 18:41:22 -03:00 committed by Tom Care
parent 3868f8f765
commit ca7018bc7e
1 changed files with 8 additions and 8 deletions

View File

@ -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)
);