fix(test): Fix non constant string format
Go 1.24 made several changes about formatting messages: https://tip.golang.org/doc/go1.24#vet These changes make tests (and vet) craching. The fix is to use a string format and give error message as argument.
This commit is contained in:
@@ -33,7 +33,7 @@ webapp:
|
|||||||
// create /tmp/katenary-test-override directory, save the compose.yaml file
|
// create /tmp/katenary-test-override directory, save the compose.yaml file
|
||||||
tmpDir, err := os.MkdirTemp("", "katenary-test-override")
|
tmpDir, err := os.MkdirTemp("", "katenary-test-override")
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Fatalf(err.Error())
|
t.Fatalf("Failed to create temp directory: %s", err.Error())
|
||||||
}
|
}
|
||||||
composeFile := filepath.Join(tmpDir, "compose.yaml")
|
composeFile := filepath.Join(tmpDir, "compose.yaml")
|
||||||
katenaryFile := filepath.Join(tmpDir, "katenary.yaml")
|
katenaryFile := filepath.Join(tmpDir, "katenary.yaml")
|
||||||
@@ -83,7 +83,7 @@ webapp:
|
|||||||
// create /tmp/katenary-test-override directory, save the compose.yaml file
|
// create /tmp/katenary-test-override directory, save the compose.yaml file
|
||||||
tmpDir, err := os.MkdirTemp("", "katenary-test-override")
|
tmpDir, err := os.MkdirTemp("", "katenary-test-override")
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Fatalf(err.Error())
|
t.Fatalf("Failed to create temp directory: %s", err.Error())
|
||||||
}
|
}
|
||||||
composeFile := filepath.Join(tmpDir, "compose.yaml")
|
composeFile := filepath.Join(tmpDir, "compose.yaml")
|
||||||
katenaryFile := filepath.Join(tmpDir, "katenary.yaml")
|
katenaryFile := filepath.Join(tmpDir, "katenary.yaml")
|
||||||
|
Reference in New Issue
Block a user