Skip to content

Commit

Permalink
Merge pull request #3392 from yuwenma/format-err
Browse files Browse the repository at this point in the history
fix:  golang non-constant format string
  • Loading branch information
google-oss-prow[bot] authored Dec 16, 2024
2 parents 880aef6 + c5e661d commit 19b0bf9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/e2e/script_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -335,11 +335,11 @@ func TestE2EScript(t *testing.T) {
gotPath := expectedPath
wantObj, err := getKubeObjectInStringFromFile(wantPath)
if err != nil {
h.Fatalf(err.Error())
h.Fatalf("%s", err.Error())
}
gotObj, err := getKubeObjectInStringFromFile(gotPath)
if err != nil {
h.Fatalf(err.Error())
h.Fatalf("%s", err.Error())
}
diff := getDiffInSpecs(wantObj, gotObj)
if diff != "" {
Expand Down

0 comments on commit 19b0bf9

Please sign in to comment.