Commit 8b98b6a5 authored by Detlef Riekenberg's avatar Detlef Riekenberg Committed by Alexandre Julliard

d3dx9_36/tests: Fix broken line test.

parent 1a97bba6
...@@ -109,8 +109,7 @@ static void test_create_line(IDirect3DDevice9* device) ...@@ -109,8 +109,7 @@ static void test_create_line(IDirect3DDevice9* device)
ok(hr == D3D_OK, "Got result %x, expected %x (D3D_OK)\n", hr, D3D_OK); ok(hr == D3D_OK, "Got result %x, expected %x (D3D_OK)\n", hr, D3D_OK);
expect_mat(&world, &result); expect_mat(&world, &result);
ref = IDirect3DDevice9_Release(return_device); IDirect3DDevice9_Release(return_device);
ok(ref == 2, "Got %x references to device %p, expected 2\n", ref, return_device);
ref = ID3DXLine_Release(line); ref = ID3DXLine_Release(line);
ok(ref == 0, "Got %x references to line %p, expected 0\n", ref, line); ok(ref == 0, "Got %x references to line %p, expected 0\n", ref, line);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment