From d2c134a80e31c56847ef75512947b1085f625a7d Mon Sep 17 00:00:00 2001 From: Martin Atkins Date: Wed, 12 Sep 2018 16:34:50 -0700 Subject: [PATCH] core: go fmt updates for context_apply_test.go --- terraform/context_apply_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/terraform/context_apply_test.go b/terraform/context_apply_test.go index dc0cc646f..5ec341e26 100644 --- a/terraform/context_apply_test.go +++ b/terraform/context_apply_test.go @@ -3559,7 +3559,7 @@ func TestContext2Apply_multiVarComprehensive(t *testing.T) { ResourceTypes: map[string]*configschema.Block{ "test_thing": { Attributes: map[string]*configschema.Attribute{ - "key": {Type: cty.String, Required: true}, + "key": {Type: cty.String, Required: true}, "source_id": {Type: cty.String, Optional: true}, "source_name": {Type: cty.String, Optional: true}, @@ -9121,7 +9121,7 @@ func TestContext2Apply_dataDependsOn(t *testing.T) { } p.DiffFn = testDiffFn - p.ReadDataSourceFn = func (req providers.ReadDataSourceRequest) providers.ReadDataSourceResponse{ + p.ReadDataSourceFn = func(req providers.ReadDataSourceRequest) providers.ReadDataSourceResponse { return providers.ReadDataSourceResponse{ State: cty.ObjectVal(map[string]cty.Value{ "foo": cty.StringVal(provisionerOutput),