Commit a2215300 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

jscript/tests: Fix the spelling of a couple of jscript ok() messages.

parent d5996ec1
......@@ -1917,11 +1917,11 @@ ok(isNaN(tmp), "Math.tan(-Infinity) is not NaN");
s = JSON.stringify(testObj);
ok(s === undefined || s === "undefined" /* broken on some old versions */,
"stringify(testObj) returned " + s + " expected undfined");
"stringify(testObj) returned " + s + " expected undefined");
s = JSON.stringify(undefined);
ok(s === undefined || s === "undefined" /* broken on some old versions */,
"stringify(undefined) returned " + s + " expected undfined");
"stringify(undefined) returned " + s + " expected undefined");
var parse_tests = [
["true", true],
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment