diff --git a/test/integration/gcs_event_arc_trigger_workflow/gcs_event_arc_trigger_workflow_test.go b/test/integration/gcs_event_arc_trigger_workflow/gcs_event_arc_trigger_workflow_test.go index 55eccdc..820f488 100755 --- a/test/integration/gcs_event_arc_trigger_workflow/gcs_event_arc_trigger_workflow_test.go +++ b/test/integration/gcs_event_arc_trigger_workflow/gcs_event_arc_trigger_workflow_test.go @@ -42,7 +42,7 @@ func writeFile(fileName string) { } func uploadToGCS(bucket, file string) { - cmd := exec.Command("gsutil", "cp", file, "gs://"+bucket+"/"+filepath.Base(file)) + cmd := exec.Command("gcloud", "storage", "cp", file, "gs://"+bucket+"/"+filepath.Base(file)) err := cmd.Run() check(err) } @@ -52,7 +52,6 @@ var retryErrors = map[string]string{ ".*Provider produced inconsistent final plan.*": "Provider bug, retry", } - func TestGcsEventArcTriggerWorkflow(t *testing.T) { bpt := tft.NewTFBlueprintTest(t, tft.WithRetryableTerraformErrors(retryErrors, 5, time.Minute))