Automatic Merge
Этот коммит содержится в:
Jesse Hallam
2021-09-27 22:20:02 -03:00
коммит произвёл GitHub
родитель 0332e1545d
Коммит 8a2832223c
5 изменённых файлов: 20 добавлений и 14 удалений

Просмотреть файл

@@ -339,6 +339,9 @@ func TestDiff(t *testing.T) {
"com.mattermost.nps": {
Enable: !defaultConfigGen().PluginSettings.PluginStates["com.mattermost.nps"].Enable,
},
"playbooks": {
Enable: true,
},
},
},
},
@@ -365,6 +368,9 @@ func TestDiff(t *testing.T) {
"com.mattermost.newplugin": {
Enable: true,
},
"playbooks": {
Enable: true,
},
},
},
},
@@ -382,9 +388,11 @@ func TestDiff(t *testing.T) {
{
Path: "PluginSettings.PluginStates",
BaseVal: defaultConfigGen().PluginSettings.PluginStates,
ActualVal: func() interface{} {
return map[string]*model.PluginState{}
}(),
ActualVal: map[string]*model.PluginState{
"playbooks": {
Enable: true,
},
},
},
},
"",