Commit acfc9159 authored by James Hawkins's avatar James Hawkins Committed by Alexandre Julliard

msi: Fix a failing test in win9x.

parent d4e78458
......@@ -6864,7 +6864,12 @@ static void test_dbmerge(void)
GetCurrentDirectoryA(MAX_PATH, buf);
r = MsiDatabaseImportA(hdb, buf, "codepage.idt");
todo_wine ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
todo_wine
{
ok(r == ERROR_SUCCESS ||
broken(r == ERROR_FUNCTION_FAILED), /* win9x */
"Expected ERROR_SUCCESS, got %d\n", r);
}
query = "DROP TABLE `One`";
r = run_query(hdb, 0, query);
......
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