Commit 4d044c6f authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

twain_32/tests: Add a trailing '\n' to ok() calls.

parent 548e1893
......@@ -247,12 +247,12 @@ START_TEST(dsm)
NULL, NULL, GetModuleHandleA(0), NULL);
rc = pDSM_Entry(&appid, NULL, DG_CONTROL, DAT_PARENT, MSG_OPENDSM, (TW_MEMREF) &hwnd);
ok(rc == TWRC_SUCCESS, "MSG_OPENDSM returned %d", rc);
ok(rc == TWRC_SUCCESS, "MSG_OPENDSM returned %d\n", rc);
test_sources(&appid);
rc = pDSM_Entry(&appid, NULL, DG_CONTROL, DAT_PARENT, MSG_CLOSEDSM, (TW_MEMREF) &hwnd);
ok(rc == TWRC_SUCCESS, "MSG_CLOSEDSM returned %d", rc);
ok(rc == TWRC_SUCCESS, "MSG_CLOSEDSM returned %d\n", rc);
DestroyWindow(hwnd);
FreeLibrary(htwain);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment