msi: Fix two MsiFormatRecord tests

James Hawkins truiken at gmail.com
Wed Sep 6 15:51:06 CDT 2006


Hi,

Changelog:
* Fix two MsiFormatRecord tests.

 dlls/msi/tests/format.c |   11 ++++-------
 1 files changed, 4 insertions(+), 7 deletions(-)

-- 
James Hawkins
-------------- next part --------------
diff --git a/dlls/msi/tests/format.c b/dlls/msi/tests/format.c
index 208bc2d..5655b91 100644
--- a/dlls/msi/tests/format.c
+++ b/dlls/msi/tests/format.c
@@ -1835,14 +1835,11 @@ static void test_formatrecord_tables(voi
 
     /* component with INSTALLSTATE_LOCAL */
     size = MAX_PATH;
-    MsiRecordSetString( hrec, 0, "[$temporal]" );
+    MsiRecordSetString( hrec, 1, "[$temporal]" );
     r = MsiFormatRecord( hpkg, hrec, buf, &size );
     ok( r == ERROR_SUCCESS, "format record failed: %d\n", r);
-    todo_wine
-    {
-        ok( !lstrcmp( buf, "1: C:\\I am a really long directory\\ " ),
-            "Expected '1: C:\\I am a really long directory\\ ', got %s\n", buf);
-    }
+    ok( !lstrcmp( buf, "1: C:\\I am a really long directory\\ " ),
+        "Expected '1: C:\\I am a really long directory\\ ', got %s\n", buf);
 
     r = MsiSetComponentState( hpkg, "temporal", INSTALLSTATE_SOURCE );
     ok( r == ERROR_SUCCESS, "failed to set install state: %d\n", r);
@@ -1857,7 +1854,7 @@ static void test_formatrecord_tables(voi
     ok( r == ERROR_SUCCESS, "format record failed: %d\n", r);
     todo_wine
     {
-        ok( !lstrcmp( buf, expected ), "Expected '%s', got %s\n", buf, expected);
+        ok( !lstrcmp( buf, expected ), "Expected '%s', got %s\n", expected, buf);
     }
 
     DeleteFile( "C:\\I am a really long directory\\temporal.txt" );
-- 
1.4.2


More information about the wine-patches mailing list