d3dxof/tests: Fix an ok() comment to match the tested value.
This commit is contained in:
parent
5d01166f96
commit
2317815da5
|
@ -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);
|
||||
|
||||
|
|
Loading…
Reference in New Issue