From 588f4930f2dd73dbca894a98dc2b0f76236cca25 Mon Sep 17 00:00:00 2001 From: Martin Atkins Date: Thu, 24 May 2018 16:07:15 -0700 Subject: [PATCH] core: Rename typoed fixture for TestContext2Plan "CBD" test The intent here was for this to be "cbd" for "create_before_destroy", but it was typoed. --- terraform/context_plan_test.go | 2 +- .../main.tf | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename terraform/test-fixtures/{plan-cdb-depends-datasource => plan-cbd-depends-datasource}/main.tf (100%) diff --git a/terraform/context_plan_test.go b/terraform/context_plan_test.go index dbdd32a3d7..344f18cf97 100644 --- a/terraform/context_plan_test.go +++ b/terraform/context_plan_test.go @@ -3714,7 +3714,7 @@ func TestContext2Plan_moduleVariableFromSplat(t *testing.T) { } func TestContext2Plan_createBeforeDestroy_depends_datasource(t *testing.T) { - m := testModule(t, "plan-cdb-depends-datasource") + m := testModule(t, "plan-cbd-depends-datasource") p := testProvider("aws") p.DiffFn = testDiffFn p.GetSchemaReturn = &ProviderSchema{ diff --git a/terraform/test-fixtures/plan-cdb-depends-datasource/main.tf b/terraform/test-fixtures/plan-cbd-depends-datasource/main.tf similarity index 100% rename from terraform/test-fixtures/plan-cdb-depends-datasource/main.tf rename to terraform/test-fixtures/plan-cbd-depends-datasource/main.tf