Commit 18742306 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

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

parent 8867a0f3
...@@ -8008,12 +8008,12 @@ static void test_GetKernelObjectSecurity(void) ...@@ -8008,12 +8008,12 @@ static void test_GetKernelObjectSecurity(void)
ret = GetSecurityDescriptorDacl(sd, &present, &acl, &defaulted); ret = GetSecurityDescriptorDacl(sd, &present, &acl, &defaulted);
ok(ret, "got error %u\n", GetLastError()); 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 */ /* the descriptor is defaulted only on Windows >= 7 */
ret = GetSecurityDescriptorSacl(sd, &present, &acl, &defaulted); ret = GetSecurityDescriptorSacl(sd, &present, &acl, &defaulted);
ok(ret, "got error %u\n", GetLastError()); 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 */ /* the descriptor is defaulted only on Windows >= 7 */
free(sd); free(sd);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment