msi/tests: Avoid #if 0 to make sure code still compiles.

oldstable
Francois Gouget 2011-09-26 23:41:26 +02:00 committed by Alexandre Julliard
parent a87797fbe2
commit d2084d5a41
1 changed files with 1 additions and 3 deletions

View File

@ -3768,10 +3768,8 @@ static void generate_transform(void)
r = MsiDatabaseGenerateTransform(hdb1, hdb2, mstfile, 0, 0);
ok(r == ERROR_SUCCESS, "return code %d, should be ERROR_SUCCESS\n", r);
#if 0 /* not implemented in wine yet */
r = MsiCreateTransformSummaryInfo(hdb2, hdb2, mstfile, 0, 0);
ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
#endif
todo_wine ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
MsiCloseHandle(hdb1);
MsiCloseHandle(hdb2);