provider/gce: Fix whitespace in test fixture

Mixture of hard and soft tabs, which isn't picked up by `go fmt` because
it's inside a string. Standardise on hard-tabs since that is what's used
in the rest of the code.
This commit is contained in:
Dan Carley 2015-05-06 22:11:14 +01:00
parent 4208e83c64
commit f96e47590f

View File

@ -72,14 +72,14 @@ func testAccCheckComputeHttpHealthCheckExists(n string) resource.TestCheckFunc {
const testAccComputeHttpHealthCheck_basic = `
resource "google_compute_http_health_check" "foobar" {
check_interval_sec = 3
check_interval_sec = 3
description = "Resource created for Terraform acceptance testing"
healthy_threshold = 3
host = "foobar"
name = "terraform-test"
name = "terraform-test"
port = "80"
request_path = "/health_check"
timeout_sec = 2
request_path = "/health_check"
timeout_sec = 2
unhealthy_threshold = 3
}
`