Francois Gouget : msi/tests: Add a trailing linefeed to an ok() call.
Module: wine Branch: master Commit: e2e94d1c9327c892928bda5a347cd6b0c9ba11f1 URL: http://source.winehq.org/git/wine.git/?a=commit;h=e2e94d1c9327c892928bda5a34... Author: Francois Gouget <fgouget(a)free.fr> Date: Thu Jul 6 12:24:03 2017 +0200 msi/tests: Add a trailing linefeed to an ok() call. 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 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/msi/tests/package.c b/dlls/msi/tests/package.c index a46bb20..58e932f 100644 --- a/dlls/msi/tests/package.c +++ b/dlls/msi/tests/package.c @@ -9376,7 +9376,7 @@ static void test_externalui_message(void) create_file_data("forcecodepage.idt", "\r\n\r\n1252\t_ForceCodepage\r\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 = MsiOpenPackageA(NULL, &hpkg); ok(r == ERROR_INVALID_PARAMETER, "Expected ERROR_INVALID_PARAMETER, got %d\n", r);
participants (1)
-
Alexandre Julliard