Commit 4017334e authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

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

parent 0e1a34d2
...@@ -1265,7 +1265,7 @@ static void test_streamtable(void) ...@@ -1265,7 +1265,7 @@ static void test_streamtable(void)
memset(buf, 0, MAX_PATH); memset(buf, 0, MAX_PATH);
r = MsiRecordReadStream( rec, 2, buf, &size ); r = MsiRecordReadStream( rec, 2, buf, &size );
ok( r == ERROR_SUCCESS, "Failed to get stream: %d\n", r); ok( r == ERROR_SUCCESS, "Failed to get stream: %d\n", r);
ok( !lstrcmp(buf, "test.txt\n"), "Expected 'test.txt\\n', got %s", buf); ok( !lstrcmp(buf, "test.txt\n"), "Expected 'test.txt\\n', got %s\n", buf);
MsiCloseHandle( rec ); MsiCloseHandle( rec );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment