Francois Gouget : msi/tests: Add missing '\n' to ok() calls.

Alexandre Julliard julliard at wine.codeweavers.com
Fri May 11 07:27:58 CDT 2007


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

Author: Francois Gouget <fgouget at free.fr>
Date:   Thu May 10 18:46:49 2007 +0200

msi/tests: Add missing '\n' to ok() calls.

---

 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 e5c0940..b120666 100644
--- a/dlls/msi/tests/automation.c
+++ b/dlls/msi/tests/automation.c
@@ -1361,7 +1361,7 @@ static void test_Installer(void)
                 hr = Installer_ProductState(szPath, &iState);
                 ok(SUCCEEDED(hr), "Installer_ProductState failed, hresult 0x%08x\n", hr);
                 if (SUCCEEDED(hr))
-                    ok(iState == INSTALLSTATE_DEFAULT || iState == INSTALLSTATE_ADVERTISED, "Installer_ProductState returned %d, expected %d or %d", iState, INSTALLSTATE_DEFAULT, INSTALLSTATE_ADVERTISED);
+                    ok(iState == INSTALLSTATE_DEFAULT || iState == INSTALLSTATE_ADVERTISED, "Installer_ProductState returned %d, expected %d or %d\n", iState, INSTALLSTATE_DEFAULT, INSTALLSTATE_ADVERTISED);
             }
         }
 
@@ -1377,7 +1377,7 @@ static void test_Installer(void)
     hr = Installer_ProductState(szProductCode, &iState);
     ok(SUCCEEDED(hr), "Installer_ProductState failed, hresult 0x%08x\n", hr);
     if (SUCCEEDED(hr))
-        ok(iState == INSTALLSTATE_UNKNOWN, "Installer_ProductState returned %d, expected %d", iState, INSTALLSTATE_UNKNOWN);
+        ok(iState == INSTALLSTATE_UNKNOWN, "Installer_ProductState returned %d, expected %d\n", iState, INSTALLSTATE_UNKNOWN);
 
     /* Installer::Version */
     todo_wine {




More information about the wine-cvs mailing list