Add missing columns to empty group queries

This commit is contained in:
Johannes Meyer 2019-10-18 07:32:58 +02:00
parent 8e51518e96
commit ded92c786a
2 changed files with 8 additions and 2 deletions

View File

@ -14,7 +14,9 @@ class EmptyhostgroupQuery extends HostgroupQuery
'hostgroup_name' => 'hgo.name1',
'host_name' => '(NULL)',
'service_description' => '(NULL)',
'servicegroup_name' => '(NULL)'
'servicegroup_name' => '(NULL)',
'host_contact' => '(NULL)',
'host_contactgroup' => '(NULL)'
],
'instances' => [
'instance_name' => 'i.instance_name'

View File

@ -14,7 +14,11 @@ class EmptyservicegroupQuery extends ServicegroupQuery
'servicegroup_name' => 'sgo.name1',
'host_name' => '(NULL)',
'hostgroup_name' => '(NULL)',
'service_description' => '(NULL)'
'service_description' => '(NULL)',
'host_contact' => '(NULL)',
'host_contactgroup' => '(NULL)',
'service_contact' => '(NULL)',
'service_contactgroup' => '(NULL)'
],
'instances' => [
'instance_name' => 'i.instance_name'