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

Alexandre Julliard julliard at winehq.org
Mon May 14 14:26:04 CDT 2012


Module: wine
Branch: master
Commit: 22fe702f7ab0d6b42a4feeb3fc7e3bec83f24a28
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=22fe702f7ab0d6b42a4feeb3fc7e3bec83f24a28

Author: Francois Gouget <fgouget at free.fr>
Date:   Mon May 14 01:05:24 2012 +0200

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

---

 dlls/jscript/tests/lang.js |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/jscript/tests/lang.js b/dlls/jscript/tests/lang.js
index 4d2efa3..308e0c9 100644
--- a/dlls/jscript/tests/lang.js
+++ b/dlls/jscript/tests/lang.js
@@ -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"; }




More information about the wine-cvs mailing list