msi/tests: Fix a failing test on all platforms up to and including win2k.

oldstable
Nicolas Le Cam 2008-10-27 14:16:33 +01:00 committed by Alexandre Julliard
parent 67be353040
commit cec5d3f514
1 changed files with 2 additions and 4 deletions

View File

@ -6860,15 +6860,13 @@ static void test_dbmerge(void)
r = run_query(hdb, 0, query);
ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
create_file_data("codepage.idt", "\r\n\r\n28603\t_ForceCodepage\r\n", 0);
create_file_data("codepage.idt", "\r\n\r\n850\t_ForceCodepage\r\n", 0);
GetCurrentDirectoryA(MAX_PATH, buf);
r = MsiDatabaseImportA(hdb, buf, "codepage.idt");
todo_wine
{
ok(r == ERROR_SUCCESS ||
broken(r == ERROR_FUNCTION_FAILED), /* win9x */
"Expected ERROR_SUCCESS, got %d\n", r);
ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
}
query = "DROP TABLE `One`";