Skip to content

Commit

Permalink
v1.16.x - Fix "should return latest patch" test (#10375)
Browse files Browse the repository at this point in the history
  • Loading branch information
sheidkamp authored Nov 19, 2024
1 parent 5ecec27 commit af18d2d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions changelog/v1.16.23/upgrade-patch-test-fix.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
changelog:
- type: NON_USER_FACING
issueLink: https://github.com/solo-io/gloo/issues/10369
resolvesIssue: false
description: >-
Updating versions used in upgrade patch tests
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 af18d2d

Please sign in to comment.