@@ -182,7 +182,7 @@ var _ = Describe("cluster-lifecycle", Ordered, Label("cluster", "cluster-lifecyc
182182 // Set VPC as ready
183183 linodeVPC .Status .Ready = true
184184 linodeVPC .Labels = map [string ]string {
185- clusterv1 .ClusterNameLabel : cScope .LinodeCluster .Name
185+ clusterv1 .ClusterNameLabel : cScope .LinodeCluster .Name ,
186186 }
187187 k8sClient .Status ().Update (ctx , & linodeVPC )
188188
@@ -451,7 +451,7 @@ var _ = Describe("cluster-lifecycle-dns", Ordered, Label("cluster", "cluster-lif
451451 clusterKey := client .ObjectKeyFromObject (& linodeCluster )
452452 Expect (k8sClient .Get (ctx , clusterKey , & linodeCluster )).To (Succeed ())
453453 Expect (linodeCluster .Status .Ready ).To (BeTrue ())
454- Expect (linodeCluster .Status .Conditions ).To (HaveLen (1 ))
454+ Expect (linodeCluster .Status .Conditions ).To (HaveLen (2 ))
455455 readyCond := conditions .Get (& linodeCluster , string (clusterv1 .ReadyCondition ))
456456 Expect (readyCond ).NotTo (BeNil ())
457457
@@ -725,7 +725,7 @@ var _ = Describe("dns-override-endpoint", Ordered, Label("cluster", "dns-overrid
725725 clusterKey := client .ObjectKeyFromObject (& linodeCluster )
726726 Expect (k8sClient .Get (ctx , clusterKey , & linodeCluster )).To (Succeed ())
727727 Expect (linodeCluster .Status .Ready ).To (BeTrue ())
728- Expect (linodeCluster .Status .Conditions ).To (HaveLen (1 ))
728+ Expect (linodeCluster .Status .Conditions ).To (HaveLen (2 ))
729729 cond := conditions .Get (& linodeCluster , string (clusterv1 .ReadyCondition ))
730730 Expect (cond ).NotTo (BeNil ())
731731
0 commit comments