Skip to content

Commit

Permalink
gdiplus/tests: Add a trailing '\n' to ok() calls.
Browse files Browse the repository at this point in the history
Signed-off-by: Francois Gouget <[email protected]>
Signed-off-by: Vincent Povirk <[email protected]>
Signed-off-by: Alexandre Julliard <[email protected]>
  • Loading branch information
fgouget authored and julliard committed Jan 4, 2018
1 parent 4a4f7e3 commit 3939fd5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dlls/gdiplus/tests/brush.c
Original file line number Diff line number Diff line change
Expand Up @@ -52,13 +52,13 @@ static void test_createHatchBrush(void)

status = GdipCreateHatchBrush(HatchStyleMin, 1, 2, &brush);
expect(Ok, status);
ok(brush != NULL, "Expected the brush to be initialized.");
ok(brush != NULL, "Expected the brush to be initialized.\n");

GdipDeleteBrush((GpBrush *)brush);

status = GdipCreateHatchBrush(HatchStyleMax, 1, 2, &brush);
expect(Ok, status);
ok(brush != NULL, "Expected the brush to be initialized.");
ok(brush != NULL, "Expected the brush to be initialized.\n");

GdipDeleteBrush((GpBrush *)brush);

Expand Down

0 comments on commit 3939fd5

Please sign in to comment.