Module: wine Branch: master Commit: 9ab5fb591fcfbe53bab16754adacc2adf0d27b24 URL: https://gitlab.winehq.org/wine/wine/-/commit/9ab5fb591fcfbe53bab16754adacc2a...
Author: Rémi Bernon rbernon@codeweavers.com Date: Tue Mar 21 09:03:16 2023 +0100
imm32/tests: Remove GetLastError check on default IME ImmEscape tests.
Wine-Bug: https://bugs.winehq.org//show_bug.cgi?id=54710
---
dlls/imm32/tests/imm32.c | 3 --- 1 file changed, 3 deletions(-)
diff --git a/dlls/imm32/tests/imm32.c b/dlls/imm32/tests/imm32.c index 6f98fb4f645..254b897f3cc 100644 --- a/dlls/imm32/tests/imm32.c +++ b/dlls/imm32/tests/imm32.c @@ -3321,11 +3321,8 @@ static void test_ImmEscape( BOOL unicode )
winetest_push_context( unicode ? "unicode" : "ansi" );
- SetLastError( 0xdeadbeef ); ok_ret( 0, ImmEscapeW( hkl, 0, 0, NULL ) ); ok_ret( 0, ImmEscapeA( hkl, 0, 0, NULL ) ); - todo_wine - ok_ret( 0xdeadbeef, GetLastError() );
/* IME_PROP_END_UNLOAD for the IME to unload / reload. */ ime_info.fdwProperty = IME_PROP_END_UNLOAD;