Skip to content

Commit

Permalink
test: Update to yaml.v3
Browse files Browse the repository at this point in the history
  • Loading branch information
cfergeau authored and praveenkumar committed Aug 4, 2023
1 parent b80e156 commit 3b0cc20
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ require (
golang.org/x/term v0.10.0
golang.org/x/text v0.11.0
gopkg.in/natefinch/lumberjack.v2 v2.2.1
gopkg.in/yaml.v2 v2.4.0
gopkg.in/yaml.v3 v3.0.1
k8s.io/api v0.25.6
k8s.io/apimachinery v0.25.6
k8s.io/client-go v0.25.6
Expand Down Expand Up @@ -199,7 +199,7 @@ require (
gopkg.in/inf.v0 v0.9.1 // indirect
gopkg.in/ini.v1 v1.67.0 // indirect
gopkg.in/square/go-jose.v2 v2.6.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
gvisor.dev/gvisor v0.0.0-20221216231429-a78e892a26d2 // indirect
inet.af/tcpproxy v0.0.0-20220326234310-be3ee21c9fa0 // indirect
k8s.io/klog/v2 v2.80.1 // indirect
Expand Down
2 changes: 1 addition & 1 deletion test/extended/util/checks.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ import (
"strconv"
"strings"

yaml "gopkg.in/yaml.v2"
yaml "gopkg.in/yaml.v3"
)

func CompareExpectedWithActualContains(expected string, actual string) error {
Expand Down
2 changes: 1 addition & 1 deletion test/extended/util/fileops.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ import (
"path/filepath"
"strings"

yaml "gopkg.in/yaml.v2"
yaml "gopkg.in/yaml.v3"
)

func CreateDirectory(dirName string) error {
Expand Down

0 comments on commit 3b0cc20

Please sign in to comment.