Michael Stefaniuc : d3dxof/tests: Fix an ok() comment to match the tested value.
Module: wine Branch: master Commit: 2317815da588de72910490ac80e2fa4e50a42a68 URL: http://source.winehq.org/git/wine.git/?a=commit;h=2317815da588de72910490ac80... Author: Michael Stefaniuc <mstefani(a)redhat.de> Date: Mon May 30 13:52:24 2011 +0200 d3dxof/tests: Fix an ok() comment to match the tested value. --- dlls/d3dxof/tests/d3dxof.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/dlls/d3dxof/tests/d3dxof.c b/dlls/d3dxof/tests/d3dxof.c index 39fa880..e8bda82 100644 --- a/dlls/d3dxof/tests/d3dxof.c +++ b/dlls/d3dxof/tests/d3dxof.c @@ -123,7 +123,7 @@ static void test_refcount(void) ref = getRefcount( (IUnknown *) lpDirectXFile); ok(ref == 1, "Got refcount %d, expected 1\n", ref); ref = IDirectXFile_AddRef(lpDirectXFile); - ok(ref == 2, "Got refcount %d, expected 1\n", ref); + ok(ref == 2, "Got refcount %d, expected 2\n", ref); ref = IDirectXFile_Release(lpDirectXFile); ok(ref == 1, "Got refcount %d, expected 1\n", ref);
participants (1)
-
Alexandre Julliard