Skip to content

Commit 3567909

Browse files
committed
fix
Signed-off-by: Britania Rodriguez Reyes <britaniar@microsoft.com>
1 parent 7bd599d commit 3567909

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

pkg/controllers/updaterun/initialization_integration_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)