Skip to content

Commit

Permalink
Fix lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
gururajsh committed Dec 19, 2024
1 parent cfeacea commit 398e69e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion integration/v7/isolated/revision_command_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,10 @@ var _ = Describe("revision command", func() {
cmd := exec.Command("bash", "-c", "cf revision "+appName+" --version 1 | grep \"revision GUID\" | sed -e 's/.*:\\s*//' -e 's/^[ \\t]*//'")
var stdout bytes.Buffer
cmd.Stdout = &stdout
cmd.Run()
err := cmd.Run()
if err != nil {
return
}
revisionGUID := strings.TrimSpace(stdout.String())
data := map[string]interface{}{
"metadata": map[string]interface{}{
Expand Down

0 comments on commit 398e69e

Please sign in to comment.