Skip to content

Commit

Permalink
Merge pull request #2888 from cloudfoundry/replace-dummy
Browse files Browse the repository at this point in the history
replace dummy with a different string
  • Loading branch information
akrishna90 authored Sep 20, 2023
2 parents 7604581 + d1d46cc commit 26c5c4a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion controllers/webhooks/workloads/cfpackage_validator_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ var _ = Describe("CFPackage Validation", func() {
When("the package is being deleted", func() {
BeforeEach(func() {
Expect(k8s.Patch(context.Background(), adminClient, cfPackage, func() {
cfPackage.Finalizers = append(cfPackage.Finalizers, "dummy")
cfPackage.Finalizers = append(cfPackage.Finalizers, "some-finalizer")
})).To(Succeed())
Expect(adminNonSyncClient.Delete(context.Background(), cfPackage)).To(Succeed())
})
Expand Down

0 comments on commit 26c5c4a

Please sign in to comment.