From 2317815da588de72910490ac80e2fa4e50a42a68 Mon Sep 17 00:00:00 2001 From: Michael Stefaniuc Date: Mon, 30 May 2011 13:52:24 +0200 Subject: [PATCH] d3dxof/tests: Fix an ok() comment to match the tested value. --- dlls/d3dxof/tests/d3dxof.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/d3dxof/tests/d3dxof.c b/dlls/d3dxof/tests/d3dxof.c index 39fa88057ec..e8bda82aa04 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);