comctl32/tests: Fix a typo in ok() call

Andrey Gusev andrey.goosev at gmail.com
Tue May 17 04:01:42 CDT 2016


-------------- next part --------------
From 1255613fc8cccdf5da75552136c8d778b95d6420 Mon Sep 17 00:00:00 2001
Message-Id: <1255613fc8cccdf5da75552136c8d778b95d6420.1463475620.git.andrey.goosev at gmail.com>
From: Andrey Gusev <andrey.goosev at gmail.com>
Date: Tue, 17 May 2016 12:00:02 +0300
Subject: [PATCH] comctl32/tests: Fix a typo in ok() call

Signed-off-by: Andrey Gusev <andrey.goosev at gmail.com>
---
 dlls/comctl32/tests/tooltips.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dlls/comctl32/tests/tooltips.c b/dlls/comctl32/tests/tooltips.c
index e94b2fd..422dd43 100644
--- a/dlls/comctl32/tests/tooltips.c
+++ b/dlls/comctl32/tests/tooltips.c
@@ -476,7 +476,7 @@ todo_wine
     toolinfoA.lpszText = bufA;
     r = SendMessageA(hwnd, TTM_GETTEXTA, 0, (LPARAM)&toolinfoA);
     ok(!r, "got %ld\n", r);
-    ok(!strcmp(toolinfoA.lpszText, testtip2A), "expected %s, got %s\n", testtipA, toolinfoA.lpszText);
+    ok(!strcmp(toolinfoA.lpszText, testtip2A), "expected %s, got %s\n", testtip2A, toolinfoA.lpszText);
 
     DestroyWindow(hwnd);
 }
-- 
2.5.5



More information about the wine-patches mailing list