msi/tests: automation: Installer::InstallProduct, remove a registry key set by Wine but not native.

This commit is contained in:
Misha Koshelev 2007-05-20 14:31:47 -05:00 committed by Alexandre Julliard
parent a3c0d9a643
commit 74b2c18bae
1 changed files with 3 additions and 0 deletions

View File

@ -1814,6 +1814,9 @@ static void test_Installer_InstallProduct(LPCWSTR szPath)
RegCloseKey(hkey);
res = RegDeleteKeyA(HKEY_LOCAL_MACHINE, "SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Installer\\Products\\05FA3C1F65B896A40AC00077F34EF203");
todo_wine ok(res == ERROR_FILE_NOT_FOUND, "Expected ERROR_SUCCESS, got %d\n", res);
/* Delete installation files we installed */
delete_test_files();
}