mirror of
https://github.com/reactos/wine.git
synced 2024-11-25 12:49:45 +00:00
comctl32: Fix two failing tests in win9x.
This commit is contained in:
parent
02c3bb7637
commit
b829b665ea
@ -111,7 +111,9 @@ static void test_DialogCancel(void)
|
||||
else
|
||||
{
|
||||
ok(0 == result, "expected %d, got %d\n", 0, result);
|
||||
ok(0 == CommDlgExtendedError(), "expected %d, got %d\n", 0,
|
||||
ok(0 == CommDlgExtendedError() ||
|
||||
CDERR_INITIALIZATION == CommDlgExtendedError(), /* win9x */
|
||||
"expected %d or %d, got %d\n", 0, CDERR_INITIALIZATION,
|
||||
CommDlgExtendedError());
|
||||
}
|
||||
|
||||
@ -122,7 +124,9 @@ static void test_DialogCancel(void)
|
||||
else
|
||||
{
|
||||
ok(0 == result, "expected %d, got %d\n", 0, result);
|
||||
ok(0 == CommDlgExtendedError(), "expected %d, got %d\n", 0,
|
||||
ok(0 == CommDlgExtendedError() ||
|
||||
CDERR_INITIALIZATION == CommDlgExtendedError(), /* win9x */
|
||||
"expected %d or %d, got %d\n", 0, CDERR_INITIALIZATION,
|
||||
CommDlgExtendedError());
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user