Francois Gouget : msi/tests: Add a trailing linefeed to a couple of ok() calls.
Module: wine Branch: master Commit: 5e7b8891fc5d7b262d3fc21fb1bb59839c87ee8f URL: http://source.winehq.org/git/wine.git/?a=commit;h=5e7b8891fc5d7b262d3fc21fb1... Author: Francois Gouget <fgouget(a)free.fr> Date: Sat Jul 22 12:21:46 2017 +0200 msi/tests: Add a trailing linefeed to a couple of ok() calls. Signed-off-by: Francois Gouget <fgouget(a)free.fr> Signed-off-by: Hans Leidekker <hans(a)codeweavers.com> Signed-off-by: Alexandre Julliard <julliard(a)winehq.org> --- dlls/msi/tests/package.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dlls/msi/tests/package.c b/dlls/msi/tests/package.c index d978286..eadef05 100644 --- a/dlls/msi/tests/package.c +++ b/dlls/msi/tests/package.c @@ -9583,7 +9583,7 @@ static void test_externalui_message(void) ok(hdb, "failed to create database\n"); r = MsiDatabaseImportA(hdb, CURR_DIR, "forcecodepage.idt"); - ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d", r); + ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r); r = create_dialog_table(hdb); ok(r == ERROR_SUCCESS, "failed to create dialog table %u\n", r); @@ -9593,7 +9593,7 @@ static void test_externalui_message(void) r = create_control_table(hdb); ok(r == ERROR_SUCCESS, "failed to create control table %u\n", r); r = add_control_entry(hdb, "'dialog', 'dummy', 'Text', 5, 5, 5, 5, 3, 'dummy'"); - ok(r == ERROR_SUCCESS, "failed to insert into control table %u", r); + ok(r == ERROR_SUCCESS, "failed to insert into control table %u\n", r); r = package_from_db(hdb, &hpkg); ok(r == ERROR_SUCCESS, "failed to create package %u\n", r);
participants (1)
-
Alexandre Julliard