advapi32/tests: Fix the spelling of a couple of ok() messages.

Signed-off-by: Francois Gouget <fgouget@free.fr>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Francois Gouget 2021-03-02 20:10:51 +01:00 committed by Alexandre Julliard
parent 8867a0f33f
commit 187423060f
1 changed files with 2 additions and 2 deletions

View File

@ -8008,12 +8008,12 @@ static void test_GetKernelObjectSecurity(void)
ret = GetSecurityDescriptorDacl(sd, &present, &acl, &defaulted);
ok(ret, "got error %u\n", GetLastError());
todo_wine ok(!present, "expeced no DACL present\n");
todo_wine ok(!present, "expected no DACL present\n");
/* the descriptor is defaulted only on Windows >= 7 */
ret = GetSecurityDescriptorSacl(sd, &present, &acl, &defaulted);
ok(ret, "got error %u\n", GetLastError());
ok(!present, "expeced no SACL present\n");
ok(!present, "expected no SACL present\n");
/* the descriptor is defaulted only on Windows >= 7 */
free(sd);