Skip to content

Commit

Permalink
Bump lifecycle-manager api
Browse files Browse the repository at this point in the history
  • Loading branch information
nesmabadr committed Dec 20, 2024
1 parent 3552422 commit 21c1ddd
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ go 1.23.4
require (
github.com/Masterminds/semver/v3 v3.3.1
github.com/go-git/go-git/v5 v5.12.0
github.com/kyma-project/lifecycle-manager/api v0.0.0-20241220072206-67aceb44e13a
github.com/kyma-project/lifecycle-manager/api v0.0.0-20241220120036-4210b9ef25e5
github.com/mandelsoft/vfs v0.4.4
github.com/onsi/ginkgo/v2 v2.22.0
github.com/onsi/gomega v1.36.1
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -676,8 +676,8 @@ github.com/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY=
github.com/kr/text v0.2.0/go.mod h1:eLer722TekiGuMkidMxC/pM04lWEeraHUUmBw8l2grE=
github.com/kylelemons/godebug v1.1.0 h1:RPNrshWIDI6G2gRW9EHilWtl7Z6Sb1BR0xunSBf0SNc=
github.com/kylelemons/godebug v1.1.0/go.mod h1:9/0rRGxNHcop5bhtWyNeEfOS8JIWk580+fNqagV/RAw=
github.com/kyma-project/lifecycle-manager/api v0.0.0-20241220072206-67aceb44e13a h1:1sOsnukORQISX5PabY9kKhdi0GF5t9DdFo/WNONh83o=
github.com/kyma-project/lifecycle-manager/api v0.0.0-20241220072206-67aceb44e13a/go.mod h1:ZaRuKNJjlJpvRi2uPcZOISKGdP2b1hfvlgsDZEfgG6c=
github.com/kyma-project/lifecycle-manager/api v0.0.0-20241220120036-4210b9ef25e5 h1:uMSo/hRLADb6HDVzdGCLRvHMM8V3zkxKVrdP8GuBLGk=
github.com/kyma-project/lifecycle-manager/api v0.0.0-20241220120036-4210b9ef25e5/go.mod h1:ZaRuKNJjlJpvRi2uPcZOISKGdP2b1hfvlgsDZEfgG6c=
github.com/leodido/go-urn v1.4.0 h1:WT9HwE9SGECu3lg4d/dIA+jxlljEa1/ffXKmRjqdmIQ=
github.com/leodido/go-urn v1.4.0/go.mod h1:bvxc+MVxLKB4z00jd1z+Dvzr47oO32F/QSNjSBOlFxI=
github.com/letsencrypt/boulder v0.0.0-20241010192615-6692160cedfa h1:/kPrcWfMENmWJh9AceGWaTJ0QBS3OyCDENx2vI71T8k=
Expand Down
4 changes: 2 additions & 2 deletions tests/e2e/create/create_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -368,7 +368,7 @@ var _ = Describe("Test 'create' command", Ordered, func() {
Expect(template.Spec.Resources[0].Link).To(Equal("https://github.com/kyma-project/template-operator/releases/download/1.0.1/template-operator.yaml"))

By("And spec.requiresDowntime should be set to false")
Expect(template.Spec.RequiresDowntime).To(Equal("false"))
Expect(template.Spec.RequiresDowntime).To(BeFalse())
})
})

Expand Down Expand Up @@ -832,7 +832,7 @@ var _ = Describe("Test 'create' command", Ordered, func() {

By("And module template should have spec.requiresDowntime set to true")
Expect(template.Spec.Mandatory).To(BeTrue())
Expect(template.Spec.RequiresDowntime).To(Equal("true"))
Expect(template.Spec.RequiresDowntime).To(BeTrue())
})
})
})
Expand Down

0 comments on commit 21c1ddd

Please sign in to comment.