Commit bc52612f authored by Saulius Krasuckas's avatar Saulius Krasuckas Committed by Alexandre Julliard

Fix a test for InternetCreateUrlA as no Windows platform sets last

error here. Make InternetCreateUrlA pass the test.
parent 9d2c6a9c
......@@ -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)
......
......@@ -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);
......
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