From dfc9be412a1b25a50054a329bbf8fa87734731a7 Mon Sep 17 00:00:00 2001 From: Markus Ewald Date: Tue, 22 Jul 2014 20:26:43 +0000 Subject: [PATCH] One unit test opened HKEY_LOCAL_MACHINE for testing, but it seems Mono on Linux doesn't grant even read access to this (emulated) key, so the unit test now uses HKEY_CURRENT_USER git-svn-id: file:///srv/devel/repo-conversion/nusu@321 d2e56fa2-650e-0410-a79f-9358c0239efd --- Source/Settings/WindowsRegistryStore.Test.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Settings/WindowsRegistryStore.Test.cs b/Source/Settings/WindowsRegistryStore.Test.cs index dd85bed..4c46c0c 100644 --- a/Source/Settings/WindowsRegistryStore.Test.cs +++ b/Source/Settings/WindowsRegistryStore.Test.cs @@ -93,7 +93,7 @@ namespace Nuclex.Support.Settings { () => { using( var store = new WindowsRegistryStore( - RegistryHive.LocalMachine, "SOFTWARE", writable: false + RegistryHive.CurrentUser, "", writable: false ) ) { } },