Commit 448cfaeb authored by James Hawkins's avatar James Hawkins Committed by Alexandre Julliard

advapi32: Fix a failing test in win2k.

parent e9acfbee
...@@ -1642,7 +1642,8 @@ static void test_LookupAccountName(void) ...@@ -1642,7 +1642,8 @@ static void test_LookupAccountName(void)
ok(!ret, "Expected 0, got %d\n", ret); ok(!ret, "Expected 0, got %d\n", ret);
todo_wine todo_wine
{ {
ok(GetLastError() == ERROR_NONE_MAPPED, ok(GetLastError() == ERROR_NONE_MAPPED ||
broken(GetLastError() == ERROR_TRUSTED_RELATIONSHIP_FAILURE),
"Expected ERROR_NONE_MAPPED, got %d\n", GetLastError()); "Expected ERROR_NONE_MAPPED, got %d\n", GetLastError());
ok(sid_size == 0, "Expected 0, got %d\n", sid_size); ok(sid_size == 0, "Expected 0, got %d\n", sid_size);
ok(domain_size == 0, "Expected 0, got %d\n", domain_size); ok(domain_size == 0, "Expected 0, got %d\n", domain_size);
......
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