Skip to content

Commit

Permalink
log output
Browse files Browse the repository at this point in the history
  • Loading branch information
julienp committed Aug 19, 2024
1 parent 6679efc commit 0ea4807
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/containers_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,8 @@ func TestCLIToolTests(t *testing.T) {
mustEnv(t, "GCP_PROJECT_NAME")

cmd := exec.Command("gcloud", "auth", "list", "--filter=status:ACTIVE", "--format='value(account)'")
out, err := cmd.Output()
out, err := cmd.CombinedOutput()
fmt.Println("out", string(out))
require.NoError(t, err)
require.Contains(t, string(out), "FIXME")
})
Expand Down

0 comments on commit 0ea4807

Please sign in to comment.