https://git.reactos.org/?p=reactos.git;a=commitdiff;h=a88e131f97a56d56a668deffac3121f92893b349

commit a88e131f97a56d56a668deffac3121f92893b349
Author:     winesync <[email protected]>
AuthorDate: Sun Mar 13 18:51:51 2022 +0100
Commit:     Mark Jansen <[email protected]>
CommitDate: Sun Mar 20 19:28:24 2022 +0100

    [WINESYNC] msi/tests: Fix the case of an ok() message.
    
    Signed-off-by: Francois Gouget <[email protected]>
    Signed-off-by: Hans Leidekker <[email protected]>
    Signed-off-by: Alexandre Julliard <[email protected]>
    
    wine commit id 3f2cae1378cc14e98747af6c0de02cb1e6a69928 by Francois Gouget 
<[email protected]>
---
 modules/rostests/winetests/msi/format.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/modules/rostests/winetests/msi/format.c 
b/modules/rostests/winetests/msi/format.c
index 6cb52cf04dc..88d8180a50c 100644
--- a/modules/rostests/winetests/msi/format.c
+++ b/modules/rostests/winetests/msi/format.c
@@ -1771,7 +1771,7 @@ static void test_formatrecord_package(void)
     ok( 0 == strcmp(buffer,"1:  2:  3:  4:  5:  6:  7:  8:  9:  10:  11:  12:  
"), "wrong output(%s)\n",buffer);
 
     r = MsiSetPropertyA(package, "prop", "val");
-    ok( r == ERROR_SUCCESS, "failed to set propertY: %d\n", r);
+    ok( r == ERROR_SUCCESS, "failed to set property: %d\n", r);
 
     r = MsiRecordSetStringA(hrec, 0, NULL);
     ok( r == ERROR_SUCCESS, "set string failed\n");

Reply via email to