Module: wine Branch: master Commit: a22153005dd7c2a8c4b38097a80f144a2fd4959d URL: https://source.winehq.org/git/wine.git/?a=commit;h=a22153005dd7c2a8c4b38097a...
Author: Francois Gouget fgouget@free.fr Date: Sun Sep 22 23:24:51 2019 +0200
jscript/tests: Fix the spelling of a couple of jscript ok() messages.
Signed-off-by: Francois Gouget fgouget@free.fr Signed-off-by: Alexandre Julliard julliard@winehq.org
---
dlls/jscript/tests/api.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dlls/jscript/tests/api.js b/dlls/jscript/tests/api.js index 58a0cd332f..d62a643471 100644 --- a/dlls/jscript/tests/api.js +++ b/dlls/jscript/tests/api.js @@ -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],