Francois Gouget : msi/tests: Add missing '\n' to ok() call.
Module: wine Branch: master Commit: 4017334ed45db36bb1afc681ab30ab70f3fae35b URL: http://source.winehq.org/git/wine.git/?a=commit;h=4017334ed45db36bb1afc681ab... Author: Francois Gouget <fgouget(a)free.fr> Date: Mon Apr 30 02:06:41 2007 +0200 msi/tests: Add missing '\n' to ok() call. --- dlls/msi/tests/db.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/dlls/msi/tests/db.c b/dlls/msi/tests/db.c index 1d24f5d..9f98540 100644 --- a/dlls/msi/tests/db.c +++ b/dlls/msi/tests/db.c @@ -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 );
participants (1)
-
Alexandre Julliard