Jacek Caban : vbscript: Fixed tests on some non-English configs (without '. ' as decimal point).
Module: wine Branch: master Commit: 2e1da7ec8b56227b1c377127069c41477443ed88 URL: http://source.winehq.org/git/wine.git/?a=commit;h=2e1da7ec8b56227b1c37712706... Author: Jacek Caban <jacek(a)codeweavers.com> Date: Wed Oct 10 17:38:35 2012 +0200 vbscript: Fixed tests on some non-English configs (without '.' as decimal point). --- dlls/vbscript/tests/api.vbs | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/dlls/vbscript/tests/api.vbs b/dlls/vbscript/tests/api.vbs index ff188ab..7ccbaa1 100644 --- a/dlls/vbscript/tests/api.vbs +++ b/dlls/vbscript/tests/api.vbs @@ -47,7 +47,7 @@ End Sub TestCStr "test", "test" TestCStr 3, "3" -TestCStr 3.5, "3.5" +if isEnglishLang then TestCStr 3.5, "3.5" if isEnglishLang then TestCStr true, "True" Call ok(isObject(new EmptyClass), "isObject(new EmptyClass) is not true?")
participants (1)
-
Alexandre Julliard