Skip to content

Commit 01ed557

Browse files
modification of the serialization_test.go
1 parent 824e85a commit 01ed557

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

pkg/cmd/server/apis/config/serialization_test.go

+7-1
Original file line numberDiff line numberDiff line change
@@ -133,9 +133,15 @@ func fuzzInternalObject(t *testing.T, forVersion schema.GroupVersion, item runti
133133
obj.NetworkConfig.DeprecatedClusterNetworkCIDR = obj.NetworkConfig.ClusterNetworks[0].CIDR
134134
obj.NetworkConfig.DeprecatedHostSubnetLength = obj.NetworkConfig.ClusterNetworks[0].HostSubnetLength
135135
} else {
136-
obj.NetworkConfig.ClusterNetworks = nil
137136
obj.NetworkConfig.DeprecatedClusterNetworkCIDR = ""
138137
obj.NetworkConfig.DeprecatedHostSubnetLength = 0
138+
clusterNetwork := []configapi.ClusterNetworkEntry{
139+
{
140+
CIDR: obj.NetworkConfig.DeprecatedClusterNetworkCIDR,
141+
HostSubnetLength: obj.NetworkConfig.DeprecatedHostSubnetLength,
142+
},
143+
}
144+
obj.NetworkConfig.ClusterNetworks = clusterNetwork
139145
}
140146

141147
// TODO stop duplicating the conversion in the test.

0 commit comments

Comments
 (0)