Commit 4bf21171 authored by Austin English's avatar Austin English Committed by Alexandre Julliard

advapi32/tests: Remove Win9x hacks.

parent f9d4a45f
......@@ -1881,12 +1881,6 @@ static void test_LookupAccountName(void)
user_size = UNLEN + 1;
SetLastError(0xdeadbeef);
ret = GetUserNameA(user_name, &user_size);
if (!ret && (GetLastError() == ERROR_NOT_LOGGED_ON))
{
/* Probably on win9x where the user used 'Cancel' instead of properly logging in */
skip("Cannot get the user name (win9x and not logged in properly)\n");
return;
}
ok(ret, "Failed to get user name : %d\n", GetLastError());
/* get sizes */
......
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