Skip to content

Commit

Permalink
Fix latest minor version issue in cilium skip install docker upgrade …
Browse files Browse the repository at this point in the history
…tests (#6894)

Signed-off-by: Rahul Ganesh <rahulgab@amazon.com>
Co-authored-by: Rahul Ganesh <rahulgab@amazon.com>
  • Loading branch information
rahulbabu95 and Rahul Ganesh authored Oct 25, 2023
1 parent eae493d commit 3b66dbe
Showing 1 changed file with 1 addition and 11 deletions.
12 changes: 1 addition & 11 deletions test/e2e/docker_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ import (
"github.com/aws/eks-anywhere/internal/pkg/api"
"github.com/aws/eks-anywhere/pkg/api/v1alpha1"
"github.com/aws/eks-anywhere/pkg/constants"
"github.com/aws/eks-anywhere/pkg/semver"
"github.com/aws/eks-anywhere/test/framework"
)

Expand Down Expand Up @@ -1166,16 +1165,7 @@ func TestDockerCiliumSkipUpgrade_CLICreate(t *testing.T) {
}

func TestDockerCiliumSkipUpgrade_CLIUpgrade(t *testing.T) {
release, err := framework.GetLatestMinorReleaseFromTestBranch()
if err != nil {
t.Fatal(err)
}

ver, _ := semver.New(release.Version)
previousRelease, err := framework.GetPreviousMinorReleaseFromVersion(ver)
if err != nil {
t.Fatal(err)
}
previousRelease := prevLatestMinorRelease(t)

provider := framework.NewDocker(t)
test := framework.NewClusterE2ETest(t, provider,
Expand Down

0 comments on commit 3b66dbe

Please sign in to comment.