Module: wine Branch: master Commit: 743eec6d5e91de6f4aa537b58396a30597bddd5e URL: https://source.winehq.org/git/wine.git/?a=commit;h=743eec6d5e91de6f4aa537b58...
Author: Andrey Gusev andrey.goosev@gmail.com Date: Thu Nov 29 14:19:51 2018 +0200
usp10/tests: Fix a typo in ok() message.
Signed-off-by: Andrey Gusev andrey.goosev@gmail.com Signed-off-by: Henri Verbeet hverbeet@codeweavers.com Signed-off-by: Alexandre Julliard julliard@winehq.org
---
dlls/usp10/tests/usp10.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/usp10/tests/usp10.c b/dlls/usp10/tests/usp10.c index aa26997..8c4b125 100644 --- a/dlls/usp10/tests/usp10.c +++ b/dlls/usp10/tests/usp10.c @@ -3349,7 +3349,7 @@ static void test_ScriptCacheGetHeight(HDC hdc)
height = 123; hr = ScriptCacheGetHeight(hdc, NULL, &height); - ok(hr == E_INVALIDARG, "Uexpected hr %#x.\n", hr); + ok(hr == E_INVALIDARG, "Unexpected hr %#x.\n", hr); ok(height == 123, "Unexpected height.\n");
memset(&tm, 0, sizeof(tm));