Commit 139b0ef3 authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

vbscript/tests: Fix tests on some Vista versions.

parent 59f1c98e
......@@ -1480,8 +1480,8 @@ sub testAscError()
call Asc()
Call ok(Err.number = 450, "Err.number = " & Err.number)
call Err.clear()
call Asc(Chr(260))
Call ok(Err.number = 5, "Err.number = " & Err.number)
call Asc(Chr(260)) ' some versions of vista allow it
Call ok(Err.number = 5 or Err.number = 0, "asc4 Err.number = " & Err.number)
call Err.clear()
call Asc("")
Call ok(Err.number = 5, "Err.number = " & Err.number)
......
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