msi/tests: Avoid #if 0 to make sure code still compiles.
This commit is contained in:
parent
a87797fbe2
commit
d2084d5a41
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue