From 31afabb8644160b63e45b7833661d50ca127a9d3 Mon Sep 17 00:00:00 2001 From: Vincent Roseberry Date: Mon, 14 Aug 2017 09:47:02 -0700 Subject: [PATCH] Rename spanner instance import tests to match format of resource tests (#324) --- google/import_spanner_instance_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/google/import_spanner_instance_test.go b/google/import_spanner_instance_test.go index c0fbe848..cecb2c03 100644 --- a/google/import_spanner_instance_test.go +++ b/google/import_spanner_instance_test.go @@ -8,7 +8,7 @@ import ( "github.com/hashicorp/terraform/helper/resource" ) -func TestAccGoogleSpannerInstance_importInstance(t *testing.T) { +func TestAccSpannerInstance_importInstance(t *testing.T) { resourceName := "google_spanner_instance.basic" instanceName := fmt.Sprintf("span-itest-%s", acctest.RandString(10)) @@ -31,7 +31,7 @@ func TestAccGoogleSpannerInstance_importInstance(t *testing.T) { }) } -func TestAccGoogleSpannerInstance_importProjectInstance(t *testing.T) { +func TestAccSpannerInstance_importProjectInstance(t *testing.T) { resourceName := "google_spanner_instance.basic" instanceName := fmt.Sprintf("span-itest-%s", acctest.RandString(10)) var projectId = multiEnvSearch([]string{"GOOGLE_PROJECT", "GCLOUD_PROJECT", "CLOUDSDK_CORE_PROJECT"})