diff --git a/builtin/providers/google/resource_compute_health_check_test.go b/builtin/providers/google/resource_compute_health_check_test.go index b872a5886..1cb4e6ceb 100644 --- a/builtin/providers/google/resource_compute_health_check_test.go +++ b/builtin/providers/google/resource_compute_health_check_test.go @@ -138,7 +138,7 @@ func testAccCheckComputeHealthCheckDestroy(s *terraform.State) error { _, err := config.clientCompute.HealthChecks.Get( config.Project, rs.Primary.ID).Do() if err == nil { - return fmt.Errorf("HealthCheck still exists") + return fmt.Errorf("HealthCheck %s still exists", rs.Primary.ID) } }