Fix a test for InternetCreateUrlA as no Windows platform sets last

error here. Make InternetCreateUrlA pass the test.
This commit is contained in:
Saulius Krasuckas 2005-11-14 11:23:02 +00:00 committed by Alexandre Julliard
parent 9d2c6a9ce9
commit bc52612f77
2 changed files with 2 additions and 4 deletions

View file

@ -3584,8 +3584,6 @@ static BOOL calc_url_length(LPURL_COMPONENTSW lpUrlComponents,
SetLastError(ERROR_INVALID_PARAMETER);
return FALSE;
}
else
SetLastError(ERROR_ALREADY_EXISTS);
}
if (lpUrlComponents->lpszPassword)

View file

@ -784,8 +784,8 @@ static void InternetCreateUrlA_test()
len = 42;
ret = InternetCreateUrlA(&urlComp, 0, szUrl, &len);
ok(ret, "Expected success\n");
ok(GetLastError() == ERROR_ALREADY_EXISTS,
"Expected ERROR_ALREADYEXISTS, got %ld\n", GetLastError());
ok(GetLastError() == 0xdeadbeef,
"Expected 0xdeadbeef, got %ld\n", GetLastError());
ok(len == 32, "Expected len 32, got %ld\n", len);
ok(!strcmp(szUrl, CREATE_URL4), "Expected %s, got %s\n", CREATE_URL3, szUrl);