Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
Signed-off-by: kranurag7 <[email protected]>
  • Loading branch information
kranurag7 committed Jun 24, 2024
1 parent 148da9f commit ced0b67
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions internal/controller/clusterstack_controller_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -747,7 +747,7 @@ var _ = Describe("clusterStack validation", func() {
Spec: csov1alpha1.ClusterStackSpec{
Provider: "docker",
Name: "testclusterstack",
Channel: version.ChannelCustom,
Channel: version.ChannelStable,
KubernetesVersion: "1.27",
NoProvider: true,
AutoSubscribe: false,
Expand Down Expand Up @@ -775,7 +775,7 @@ var _ = Describe("clusterStack validation", func() {
Expect(foundClusterStack.Spec.Provider).To(Equal("docker"))
Expect(foundClusterStack.Spec.Name).To(Equal("testclusterstack"))
Expect(foundClusterStack.Spec.KubernetesVersion).To(Equal("1.27"))
Expect(foundClusterStack.Spec.Channel).To(Equal(version.ChannelCustom))
Expect(foundClusterStack.Spec.Channel).To(Equal(version.ChannelStable))
})

It("Should not allow an update of ClusterStack.Spec.Provider", func() {
Expand Down Expand Up @@ -819,7 +819,7 @@ var _ = Describe("clusterStack validation", func() {
Spec: csov1alpha1.ClusterStackSpec{
Provider: "docker",
Name: "ferrol",
Channel: version.ChannelCustom,
Channel: version.ChannelStable,
KubernetesVersion: "1.27",
NoProvider: true,
AutoSubscribe: false,
Expand Down

0 comments on commit ced0b67

Please sign in to comment.