Commit 1a761379 authored by Andrey Gusev's avatar Andrey Gusev Committed by Alexandre Julliard

uxtheme/tests: Fix a typo in ok() message.

parent 7493364b
......@@ -687,7 +687,7 @@ todo_wine
hr = pGetBufferedPaintBits(NULL, &bits, &row);
ok(hr == E_FAIL, "Unexpected return code %#x\n", hr);
ok(row == 10, "Unexpected row count %d\n", row);
ok(bits == (void *)0xdeadbeef, "Unepexpected data pointer %p\n", bits);
ok(bits == (void *)0xdeadbeef, "Unexpected data pointer %p\n", bits);
hr = pGetBufferedPaintBits(NULL, NULL, NULL);
ok(hr == E_POINTER, "Unexpected return code %#x\n", hr);
......
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