From 395887b684e48ab27245ebeb19c5fbeee1296628 Mon Sep 17 00:00:00 2001 From: Hans Leidekker Date: Thu, 30 Jun 2011 12:14:44 +0200 Subject: [PATCH] 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. --- dlls/msi/tests/action.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/msi/tests/action.c b/dlls/msi/tests/action.c index 1d065095770..18961ff7baa 100644 --- a/dlls/msi/tests/action.c +++ b/dlls/msi/tests/action.c @@ -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);