@@ -41,6 +41,7 @@ func TestDataAttributes(t *testing.T) {
41
41
SnippetsFilterCount : 13 ,
42
42
UpstreamSettingsPolicyCount : 14 ,
43
43
GatewayAttachedNpCount : 15 ,
44
+ InferencePoolCount : 16 ,
44
45
},
45
46
SnippetsFiltersDirectives : []string {"main-three-count" , "http-two-count" , "server-one-count" },
46
47
SnippetsFiltersDirectivesCount : []int64 {3 , 2 , 1 },
@@ -83,6 +84,7 @@ func TestDataAttributes(t *testing.T) {
83
84
attribute .Int64 ("SnippetsFilterCount" , 13 ),
84
85
attribute .Int64 ("UpstreamSettingsPolicyCount" , 14 ),
85
86
attribute .Int64 ("GatewayAttachedNpCount" , 15 ),
87
+ attribute .Int64 ("InferencePoolCount" , 16 ),
86
88
attribute .Int64 ("NginxPodCount" , 3 ),
87
89
attribute .Int64 ("ControlPlanePodCount" , 3 ),
88
90
attribute .Bool ("NginxOneConnectionEnabled" , true ),
@@ -129,6 +131,7 @@ func TestDataAttributesWithEmptyData(t *testing.T) {
129
131
attribute .Int64 ("SnippetsFilterCount" , 0 ),
130
132
attribute .Int64 ("UpstreamSettingsPolicyCount" , 0 ),
131
133
attribute .Int64 ("GatewayAttachedNpCount" , 0 ),
134
+ attribute .Int64 ("InferencePoolCount" , 0 ),
132
135
attribute .Int64 ("NginxPodCount" , 0 ),
133
136
attribute .Int64 ("ControlPlanePodCount" , 0 ),
134
137
attribute .Bool ("NginxOneConnectionEnabled" , false ),
@@ -137,6 +140,5 @@ func TestDataAttributesWithEmptyData(t *testing.T) {
137
140
result := data .Attributes ()
138
141
139
142
g := NewWithT (t )
140
-
141
143
g .Expect (result ).To (Equal (expected ))
142
144
}
0 commit comments