Fix tests: split core package into core and base

This commit is contained in:
Daniel
2020-05-02 13:24:31 +02:00
parent 3ce67133e4
commit f4b8ad7d7c
10 changed files with 51 additions and 38 deletions

View File

@@ -12,8 +12,6 @@ var (
CfgOptionAskWithSystemNotificationsKey = "filter/askWithSystemNotifications"
CfgOptionAskWithSystemNotificationsOrder = 2
askWithSystemNotifications config.BoolOption
useSystemNotifications config.BoolOption
CfgOptionAskTimeoutKey = "filter/askTimeout"
CfgOptionAskTimeoutOrder = 3
@@ -56,8 +54,6 @@ func registerConfig() error {
if err != nil {
return err
}
askWithSystemNotifications = config.Concurrent.GetAsBool(CfgOptionAskWithSystemNotificationsKey, true)
useSystemNotifications = config.Concurrent.GetAsBool(core.CfgUseSystemNotificationsKey, true)
err = config.Register(&config.Option{
Name: "Timeout for Ask Notifications",