vbscript: Fixed tests on some non-English configs (without '.' as decimal point).

This commit is contained in:
Jacek Caban 2012-10-10 17:38:35 +02:00 committed by Alexandre Julliard
parent 8ba4090fc3
commit 2e1da7ec8b
1 changed files with 1 additions and 1 deletions

View File

@ -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?")