Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions test/e2e/helloworld_shell_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -92,9 +92,9 @@ func TestHelloWorldFromShell(t *testing.T) {
logger.Infof("Manifest file is '%s'", newYamlFilename)
logger.Info("Deploying using kubectl")

// Deply using kubectl
if err = exec.Command("kubectl", "apply", "-f", newYamlFilename).Run(); err != nil {
t.Fatalf("Error running kubectl: %v", err)
// Deploy using kubectl
if output, err := exec.Command("kubectl", "apply", "-f", newYamlFilename).CombinedOutput(); err != nil {
t.Fatalf("Error running kubectl: %v", strings.TrimSpace(string(output)))
}

logger.Info("Waiting for ingress to come up")
Expand Down