Misha Koshelev : msi/tests: automation: Fix Installer_ProductInfo ok message to correctly state function.

Alexandre Julliard julliard at wine.codeweavers.com
Fri May 18 13:56:11 CDT 2007


Module: wine
Branch: master
Commit: 5ee995d90ab1bbc83f1f50aa86c07248d593913b
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=5ee995d90ab1bbc83f1f50aa86c07248d593913b

Author: Misha Koshelev <mk144210 at bcm.edu>
Date:   Fri May 18 11:22:31 2007 -0500

msi/tests: automation: Fix Installer_ProductInfo ok message to correctly state function.

---

 dlls/msi/tests/automation.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/msi/tests/automation.c b/dlls/msi/tests/automation.c
index ffd0822..39bd272 100644
--- a/dlls/msi/tests/automation.c
+++ b/dlls/msi/tests/automation.c
@@ -1703,13 +1703,13 @@ static void test_Installer_InstallProduct(LPCWSTR szPath)
     memset(szString, 0, sizeof(szString));
     hr = Installer_ProductInfo(szProductCode, INSTALLPROPERTY_PACKAGENAMEW, szString);
     todo_wine ok(hr == S_OK, "Installer_ProductInfo failed, hresult 0x%08x\n", hr);
-    todo_wine ok_w2("StringList_Item returned %s but expected %s\n", szString, szMsifile);
+    todo_wine ok_w2("Installer_ProductInfo returned %s but expected %s\n", szString, szMsifile);
 
     /* Product name */
     memset(szString, 0, sizeof(szString));
     hr = Installer_ProductInfo(szProductCode, INSTALLPROPERTY_PRODUCTNAMEW, szString);
     ok(hr == S_OK, "Installer_ProductInfo failed, hresult 0x%08x\n", hr);
-    ok_w2("StringList_Item returned %s but expected %s\n", szString, szMSITEST);
+    ok_w2("Installer_ProductInfo returned %s but expected %s\n", szString, szMSITEST);
 
     /* Installer::RelatedProducts for our upgrade code */
     hr = Installer_RelatedProducts(szUpgradeCode, &pStringList);




More information about the wine-cvs mailing list