vbscript/tests: Fix redim tests.

This commit is contained in:
Nikolay Sivov 2022-11-23 06:50:17 +03:00 committed by Alexandre Julliard
parent d596f97250
commit 131aa5135b

View file

@ -1562,7 +1562,8 @@ sub TestReDimList
end sub
call TestReDimList
dim rx(4)
dim rx
redim rx(4)
sub TestReDimByRef(byref x)
ok ubound(x) = 4, "ubound(x) = " & ubound(x)
redim x(6)