Skip to content

Commit

Permalink
Fix failing unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ashishb-solo committed Nov 15, 2024
1 parent 275117d commit 664f692
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
changelog:
- type: NON_USER_FACING
description: >-
Fix failing unit test in `test/kubernetes/testutils/helper/util_test.go`
Fix failing unit tests in `test/kubernetes/testutils/helper/util_test.go`
and `test/kubernetes/testutils/helper/util_test.go`
- type: NON_USER_FACING
issueLink: https://github.com/solo-io/solo-projects/issues/7223
resolvesIssue: false
Expand Down
4 changes: 2 additions & 2 deletions test/kube2e/upgrade/upgrade_utils_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ var _ = Describe("upgrade utils unit tests", func() {
It("should return latest patch", func() {
ctx := context.Background()
client, _ := githubutils.GetClient(ctx)
minor, err := getLatestReleasedPatchVersion(ctx, client, "gloo", 1, 8)
minor, err := getLatestReleasedPatchVersion(ctx, client, "gloo", 1, 9)
Expect(err).NotTo(HaveOccurred())
Expect(minor.String()).To(Equal("v1.8.37"))
Expect(minor.String()).To(Equal("v1.9.30"))
})
})

Expand Down

0 comments on commit 664f692

Please sign in to comment.