Module: wine Branch: master Commit: 183d03871d53f34d8aacfdb02607fbfbeec18a73 URL: http://source.winehq.org/git/wine.git/?a=commit;h=183d03871d53f34d8aacfdb026...
Author: Dylan Smith dylan.ah.smith@gmail.com Date: Wed Apr 20 16:21:17 2011 -0400
d3dxof/tests: Make expected value in string and comparison match.
---
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 a3fc070..39fa880 100644 --- a/dlls/d3dxof/tests/d3dxof.c +++ b/dlls/d3dxof/tests/d3dxof.c @@ -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);