@@ -774,7 +774,7 @@ var _ = Describe("Updaterun initialization tests", func() {
774774 validateUpdateRunMetricsEmitted (generateInitializationFailedMetric (updateRun ))
775775 })
776776
777- FIt ("Should fail to initialize if the specified resource snapshot is not found - no resourceSnapshots at all" , func () {
777+ It ("Should fail to initialize if the specified resource snapshot is not found - no resourceSnapshots at all" , func () {
778778 By ("Creating a new clusterStagedUpdateRun" )
779779 Expect (k8sClient .Create (ctx , updateRun )).To (Succeed ())
780780
@@ -785,7 +785,7 @@ var _ = Describe("Updaterun initialization tests", func() {
785785 validateUpdateRunMetricsEmitted (generateInitializationFailedMetric (updateRun ))
786786 })
787787
788- FIt ("Should fail to initialize if the specified resource snapshot is not found - no CRP label found" , func () {
788+ It ("Should fail to initialize if the specified resource snapshot is not found - no CRP label found" , func () {
789789 By ("Creating a new resource snapshot associated with another CRP" )
790790 resourceSnapshot .Labels [placementv1beta1 .PlacementTrackingLabel ] = "not-exist-crp"
791791 Expect (k8sClient .Create (ctx , resourceSnapshot )).To (Succeed ())
@@ -800,7 +800,7 @@ var _ = Describe("Updaterun initialization tests", func() {
800800 validateUpdateRunMetricsEmitted (generateInitializationFailedMetric (updateRun ))
801801 })
802802
803- FIt ("Should fail to initialize if the specified resource snapshot is not found - no resource index label found" , func () {
803+ It ("Should fail to initialize if the specified resource snapshot is not found - no resource index label found" , func () {
804804 By ("Creating a new resource snapshot with a different index label" )
805805 resourceSnapshot .Labels [placementv1beta1 .ResourceIndexLabel ] = testResourceSnapshotIndex + "1"
806806 Expect (k8sClient .Create (ctx , resourceSnapshot )).To (Succeed ())
0 commit comments