From 2edf3087a9b9941673151128f754ee0bc749c7bd Mon Sep 17 00:00:00 2001 From: Paddy Carver Date: Fri, 22 Jun 2018 00:00:30 -0700 Subject: [PATCH] Update DNS managed zone in tests. Move from using qa.test.com, a domain we don't own, to qa.tf-test.club, a domain we do own, so the domain validation doesn't cause our tests to fail anymore. --- google/data_source_dns_managed_zone_test.go | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/google/data_source_dns_managed_zone_test.go b/google/data_source_dns_managed_zone_test.go index e5924798..a794c56c 100644 --- a/google/data_source_dns_managed_zone_test.go +++ b/google/data_source_dns_managed_zone_test.go @@ -2,10 +2,11 @@ package google import ( "fmt" + "testing" + "github.com/hashicorp/terraform/helper/acctest" "github.com/hashicorp/terraform/helper/resource" "github.com/hashicorp/terraform/terraform" - "testing" ) func TestAccDataSourceDnsManagedZone_basic(t *testing.T) { @@ -61,7 +62,7 @@ func testAccDataSourceDnsManagedZone_basic() string { return fmt.Sprintf(` resource "google_dns_managed_zone" "foo" { name = "qa-zone-%s" - dns_name = "qa.test.com." + dns_name = "qa.tf-test.club." description = "QA DNS zone" }