msi/tests: Add missing '\n' to ok() call.
This commit is contained in:
parent
0e1a34d2a2
commit
4017334ed4
|
@ -1265,7 +1265,7 @@ static void test_streamtable(void)
|
|||
memset(buf, 0, MAX_PATH);
|
||||
r = MsiRecordReadStream( rec, 2, buf, &size );
|
||||
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 );
|
||||
|
||||
|
|
Loading…
Reference in New Issue