msi/tests: Remove a test.

This test shows that native fails to remove an empty directory under
certain conditions. I don't see why we should replicate this behavior.
This commit is contained in:
Hans Leidekker 2011-06-30 12:14:44 +02:00 committed by Alexandre Julliard
parent b32c643c18
commit 395887b684
1 changed files with 1 additions and 1 deletions

View File

@ -4323,7 +4323,7 @@ static void test_remove_files(void)
r = MsiInstallProductA(msifile, "REMOVE=ALL");
ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %u\n", r);
ok(!delete_pf("msitest\\cabout", FALSE), "Directory not deleted\n");
ok(delete_pf("msitest", FALSE), "Directory deleted\n");
delete_pf("msitest", FALSE);
error:
DeleteFile(msifile);