Skip to content

Commit 8a68839

Browse files
build(deps): Bump github.com/stretchr/testify from 1.10.0 to 1.11.1 (#538)
Signed-off-by: dependabot[bot] <[email protected]> Signed-off-by: Jonathan West <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Jonathan West <[email protected]>
1 parent 2ce821f commit 8a68839

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ require (
2121
github.com/rs/zerolog v1.34.0
2222
github.com/sirupsen/logrus v1.9.3
2323
github.com/spf13/cobra v1.10.1
24-
github.com/stretchr/testify v1.10.0
24+
github.com/stretchr/testify v1.11.1
2525
github.com/wI2L/jsondiff v0.7.0
2626
golang.org/x/crypto v0.42.0
2727
golang.org/x/net v0.44.0

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -407,8 +407,8 @@ github.com/stretchr/testify v1.7.0/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/
407407
github.com/stretchr/testify v1.7.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg=
408408
github.com/stretchr/testify v1.8.0/go.mod h1:yNjHg4UonilssWZ8iaSj1OCr/vHnekPRkoO+kdMU+MU=
409409
github.com/stretchr/testify v1.8.1/go.mod h1:w2LPCIKwWwSfY2zedu0+kehJoqGctiVI29o6fzry7u4=
410-
github.com/stretchr/testify v1.10.0 h1:Xv5erBjTwe/5IxqUQTdXv5kgmIvbHo3QQyRwhJsOfJA=
411-
github.com/stretchr/testify v1.10.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY=
410+
github.com/stretchr/testify v1.11.1 h1:7s2iGBzp5EwR7/aIZr8ao5+dra3wiQyKjjFuvgVKu7U=
411+
github.com/stretchr/testify v1.11.1/go.mod h1:wZwfW3scLgRK+23gO65QZefKpKQRnfz6sD981Nm4B6U=
412412
github.com/tidwall/gjson v1.14.2/go.mod h1:/wbyibRr2FHMks5tjHJ5F8dMZh3AcwJEMf5vlfC0lxk=
413413
github.com/tidwall/gjson v1.18.0 h1:FIDeeyB800efLX89e5a8Y0BNH+LOngJyGrIWxG2FKQY=
414414
github.com/tidwall/gjson v1.18.0/go.mod h1:/wbyibRr2FHMks5tjHJ5F8dMZh3AcwJEMf5vlfC0lxk=

test/e2e/redis_proxy_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ func (suite *RedisProxyTestSuite) Test_RedisProxy_ManagedAgent_Argo() {
168168

169169
for idx := range podList.Items {
170170
pod := podList.Items[idx]
171-
if strings.Contains(pod.Name, "kustomize-guestbook-ui") && newPod.Name != oldPod.Name {
171+
if strings.Contains(pod.Name, "kustomize-guestbook-ui") && pod.Name != oldPod.Name {
172172
newPod = pod
173173
break
174174
}
@@ -363,7 +363,7 @@ func (suite *RedisProxyTestSuite) Test_RedisProxy_AutonomousAgent_Argo() {
363363

364364
for idx := range podList.Items {
365365
pod := podList.Items[idx]
366-
if strings.Contains(pod.Name, "kustomize-guestbook-ui") && newPod.Name != oldPod.Name {
366+
if strings.Contains(pod.Name, "kustomize-guestbook-ui") && pod.Name != oldPod.Name {
367367
newPod = pod
368368
break
369369
}

0 commit comments

Comments
 (0)