advapi32: Fix a failing test in win2k.

This commit is contained in:
James Hawkins 2008-07-01 23:16:54 -05:00 committed by Alexandre Julliard
parent e9acfbee57
commit 448cfaeb8f
1 changed files with 2 additions and 1 deletions

View File

@ -1642,7 +1642,8 @@ static void test_LookupAccountName(void)
ok(!ret, "Expected 0, got %d\n", ret);
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());
ok(sid_size == 0, "Expected 0, got %d\n", sid_size);
ok(domain_size == 0, "Expected 0, got %d\n", domain_size);