Skip to content

Commit 664f692

Browse files
committed
Fix failing unit tests
1 parent 275117d commit 664f692

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

changelog/v1.17.17/remove-hardcoded-namespace-in-tracing-test-v1.17.x.yaml

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
changelog:
22
- type: NON_USER_FACING
33
description: >-
4-
Fix failing unit test in `test/kubernetes/testutils/helper/util_test.go`
4+
Fix failing unit tests in `test/kubernetes/testutils/helper/util_test.go`
5+
and `test/kubernetes/testutils/helper/util_test.go`
56
- type: NON_USER_FACING
67
issueLink: https://github.com/solo-io/solo-projects/issues/7223
78
resolvesIssue: false

test/kube2e/upgrade/upgrade_utils_test.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@ var _ = Describe("upgrade utils unit tests", func() {
2626
It("should return latest patch", func() {
2727
ctx := context.Background()
2828
client, _ := githubutils.GetClient(ctx)
29-
minor, err := getLatestReleasedPatchVersion(ctx, client, "gloo", 1, 8)
29+
minor, err := getLatestReleasedPatchVersion(ctx, client, "gloo", 1, 9)
3030
Expect(err).NotTo(HaveOccurred())
31-
Expect(minor.String()).To(Equal("v1.8.37"))
31+
Expect(minor.String()).To(Equal("v1.9.30"))
3232
})
3333
})
3434

0 commit comments

Comments
 (0)