https://git.reactos.org/?p=reactos.git;a=commitdiff;h=329e065dbb280a2959d13…
commit 329e065dbb280a2959d13328cfe7b8894eebfdf3
Author: Timo Kreuzer <timo.kreuzer(a)reactos.org>
AuthorDate: Mon Jan 30 19:17:54 2023 +0200
Commit: Timo Kreuzer <timo.kreuzer(a)reactos.org>
CommitDate: Tue Jan 31 18:39:21 2023 +0100
[WIN32KNT_APITEST] Fix a test for NtGdiExtTextOutW
---
modules/rostests/apitests/win32nt/ntgdi/NtGdiExtTextOutW.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/modules/rostests/apitests/win32nt/ntgdi/NtGdiExtTextOutW.c
b/modules/rostests/apitests/win32nt/ntgdi/NtGdiExtTextOutW.c
index 044a0cde567..3a75f9f0b9f 100644
--- a/modules/rostests/apitests/win32nt/ntgdi/NtGdiExtTextOutW.c
+++ b/modules/rostests/apitests/win32nt/ntgdi/NtGdiExtTextOutW.c
@@ -54,5 +54,5 @@ START_TEST(NtGdiExtTextOutW)
/* Test alignment requirement for lpDx */
ret = NtGdiExtTextOutW(hDC, 0, 0, 0, 0, lpstr, len, (INT*)((ULONG_PTR)Dx + 1), 0);
- ok_int(ret, 1);
+ ok_int(ret, 0);
}