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

This commit is contained in:
Francois Gouget 2007-04-30 02:06:41 +02:00 committed by Alexandre Julliard
parent 0e1a34d2a2
commit 4017334ed4
1 changed files with 1 additions and 1 deletions

View File

@ -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 );