Skip to content

Commit

Permalink
wmp/tests: Add a trailing '\n' to an ok() call.
Browse files Browse the repository at this point in the history
Signed-off-by: Francois Gouget <[email protected]>
Signed-off-by: Alexandre Julliard <[email protected]>
  • Loading branch information
fgouget authored and julliard committed Mar 16, 2018
1 parent f98a2da commit abf6841
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dlls/wmp/tests/oleobj.c
Original file line number Diff line number Diff line change
Expand Up @@ -956,7 +956,7 @@ static void test_wmp_ifaces(IOleObject *oleobj)
SET_EXPECT(Invoke_USERMODE);
hres = IWMPPlayer4_get_URL(player4, &url);
ok(hres == S_OK, "IWMPPlayer4_get_URL failed: %08x\n", hres);
ok(0 == lstrcmpW(url, filename), "%s != %s", wine_dbgstr_w(url), wine_dbgstr_w(filename));
ok(0 == lstrcmpW(url, filename), "%s != %s\n", wine_dbgstr_w(url), wine_dbgstr_w(filename));
todo_wine CHECK_CALLED(Invoke_USERMODE);
SysFreeString(url);

Expand All @@ -967,7 +967,7 @@ static void test_wmp_ifaces(IOleObject *oleobj)
url = NULL;
hres = IWMPMedia_get_sourceURL(media, &url);
ok(hres == S_OK, "IWMPMedia_get_sourceURL failed: %08x\n", hres);
ok(0 == lstrcmpW(url, filename), "%s != %s", wine_dbgstr_w(url), wine_dbgstr_w(filename));
ok(0 == lstrcmpW(url, filename), "%s != %s\n", wine_dbgstr_w(url), wine_dbgstr_w(filename));
SysFreeString(url);

SET_EXPECT(GetContainer);
Expand Down

0 comments on commit abf6841

Please sign in to comment.