Skip to content

Commit

Permalink
Fix incorrect log line.
Browse files Browse the repository at this point in the history
  • Loading branch information
ptodev committed Aug 20, 2024
1 parent df7b829 commit e9e005d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/cmd/integration-tests/utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ func executeCommand(command string, args []string, taskDescription string) bool
if len(stdoutStr) > 0 {
log.Printf("stdout:%s\n", stdoutStr)
} else {
log.Fatalf("No stdout was printed from task '%s'\n", taskDescription)
log.Printf("No stdout was printed from task '%s'\n", taskDescription)
}
return success
}
Expand Down

0 comments on commit e9e005d

Please sign in to comment.