Commit 056d9693 authored by Saulius Krasuckas's avatar Saulius Krasuckas Committed by Alexandre Julliard

Win9x returns MSIDBERROR_NOERROR.

parent 3d0c6627
......@@ -400,7 +400,8 @@ static void test_viewmodify(void)
/* see what happens with a good hview and bad args */
r = MsiViewGetError( hview, NULL, NULL );
ok(r == MSIDBERROR_INVALIDARG, "MsiViewGetError return\n");
ok(r == MSIDBERROR_INVALIDARG || r == MSIDBERROR_NOERROR,
"MsiViewGetError returns %u (expected -3)\n", r);
r = MsiViewGetError( hview, buffer, NULL );
ok(r == MSIDBERROR_INVALIDARG, "MsiViewGetError return\n");
......
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