d3dxof/tests: Fix an ok() comment to match the tested value.

This commit is contained in:
Michael Stefaniuc 2011-05-30 13:52:24 +02:00 committed by Alexandre Julliard
parent 5d01166f96
commit 2317815da5
1 changed files with 1 additions and 1 deletions

View File

@ -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);