Commit 7c8d07bc authored by Paul Vriens's avatar Paul Vriens Committed by Alexandre Julliard

urlmon/tests: Fix a test by using a better default registry key.

parent 697a6459
......@@ -851,7 +851,10 @@ static void test_url_action(IInternetSecurityManager *secmgr, IInternetZoneManag
HKEY hkey;
HRESULT hres;
res = RegOpenKeyA(HKEY_LOCAL_MACHINE,
/* FIXME: HKEY_CURRENT_USER is most of the time the default but this can be changed on a system.
* The test should be changed to cope with that, if need be.
*/
res = RegOpenKeyA(HKEY_CURRENT_USER,
"Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\Zones\\3", &hkey);
if(res != ERROR_SUCCESS) {
ok(0, "Could not open zone key\n");
......
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