core: go fmt updates for context_apply_test.go

This commit is contained in:
Martin Atkins 2018-09-12 16:34:50 -07:00
parent 5d3f642585
commit d2c134a80e
1 changed files with 2 additions and 2 deletions

View File

@ -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),