gdiplus/tests: Fix copy-paste typos.
Signed-off-by: Andrey Gusev <andrey.goosev@gmail.com> Signed-off-by: Vincent Povirk <vincent@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
51fe44ed42
commit
71e2c4b429
|
@ -5171,11 +5171,11 @@ static void test_GdipLoadImageFromStream(void)
|
|||
HRESULT hr;
|
||||
|
||||
status = GdipLoadImageFromStream(NULL, NULL);
|
||||
ok(status == InvalidParameter, "Unexected return value %d.\n", status);
|
||||
ok(status == InvalidParameter, "Unexpected return value %d.\n", status);
|
||||
|
||||
image = (void *)0xdeadbeef;
|
||||
status = GdipLoadImageFromStream(NULL, &image);
|
||||
ok(status == InvalidParameter, "Unexected return value %d.\n", status);
|
||||
ok(status == InvalidParameter, "Unexpected return value %d.\n", status);
|
||||
ok(image == (void *)0xdeadbeef, "Unexpected image pointer.\n");
|
||||
|
||||
hglob = GlobalAlloc(0, sizeof(pngimage));
|
||||
|
|
Loading…
Reference in New Issue