windowscodecs/tests: Fix an argument typo in ok().

Signed-off-by: Ziqing Hui <zhui@codeweavers.com>
Signed-off-by: Esme Povirk <esme@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Ziqing Hui 2021-01-29 13:02:40 +08:00 committed by Alexandre Julliard
parent 4c4a5cb799
commit 33608a2c9c

View file

@ -495,7 +495,7 @@ static IWICBitmapDecoder *create_decoder(void)
hr = IWICBitmapDecoder_GetContainerFormat(decoder, &guidresult);
ok(hr == S_OK, "GetContainerFormat failed, hr %#x\n", hr);
ok(IsEqualGUID(&guidresult, &GUID_ContainerFormatDds),
"Got unexpected container format %s\n", debugstr_guid(&GUID_ContainerFormatDds));
"Got unexpected container format %s\n", debugstr_guid(&guidresult));
return decoder;
}