d3dxof/tests: Make expected value in string and comparison match.

This commit is contained in:
Dylan Smith 2011-04-20 16:21:17 -04:00 committed by Alexandre Julliard
parent 7cf7421e7a
commit 183d03871d
1 changed files with 1 additions and 1 deletions

View File

@ -155,7 +155,7 @@ static void test_refcount(void)
ref = getRefcount( (IUnknown *) lpdxfeo);
ok(ref == 1, "Got refcount %d, expected 1\n", ref);
ref = getRefcount( (IUnknown *) lpdxfd);
ok(ref == 2, "Got refcount %d, expected 1\n", ref);
ok(ref == 2, "Got refcount %d, expected 2\n", ref);
ref = IDirectXFileEnumObject_Release(lpdxfeo);
ok(ref == 0, "Got refcount %d, expected 0\n", ref);