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
This commit is contained in:
parent
40492c8b21
commit
dfc9be412a
|
@ -93,7 +93,7 @@ namespace Nuclex.Support.Settings {
|
||||||
() => {
|
() => {
|
||||||
using(
|
using(
|
||||||
var store = new WindowsRegistryStore(
|
var store = new WindowsRegistryStore(
|
||||||
RegistryHive.LocalMachine, "SOFTWARE", writable: false
|
RegistryHive.CurrentUser, "", writable: false
|
||||||
)
|
)
|
||||||
) { }
|
) { }
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue
Block a user