Commit 22fe702f authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

jscript/tests: Fix the spelling of the testEmbeddedFunctions() function name.

parent fde4e8f9
......@@ -1215,7 +1215,7 @@ ok(tmp === 5, "testFunc4(1) = " + tmp);
tmp = function testFunc4(x) { return x+4; };
ok(testFunc4 === 1, "testFunc4 = " + testFunc4);
function testEmbededFunctions() {
function testEmbeddedFunctions() {
ok(typeof(testFunc5) === "function", "typeof(testFunc5) = " + typeof(testFunc5));
tmp = testFunc5(1);
ok(tmp === 3, "testFunc5(1) = " + tmp);
......@@ -1231,7 +1231,7 @@ function testEmbededFunctions() {
ok(testFunc6 === 1, "testFunc4 = " + testFunc6);
}
testEmbededFunctions();
testEmbeddedFunctions();
date = new Date();
date.toString = function() { return "toString"; }
......
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