diff --git a/builtin/providers/aws/resource_aws_launch_configuration.go b/builtin/providers/aws/resource_aws_launch_configuration.go index 001b59a90..6ae23cab6 100644 --- a/builtin/providers/aws/resource_aws_launch_configuration.go +++ b/builtin/providers/aws/resource_aws_launch_configuration.go @@ -107,7 +107,7 @@ func resourceAwsLaunchConfigurationCreate(d *schema.ResourceData, meta interface // We put a Retry here since sometimes eventual consistency bites // us and we need to retry a few times to get the LC to load properly - return resource.Retry(30 * time.Second, func() error { + return resource.Retry(30*time.Second, func() error { return resourceAwsLaunchConfigurationRead(d, meta) }) } diff --git a/terraform/state_test.go b/terraform/state_test.go index 34e7b8029..9ee251745 100644 --- a/terraform/state_test.go +++ b/terraform/state_test.go @@ -11,8 +11,8 @@ import ( ) func TestStateAddModule(t *testing.T) { - cases := []struct{ - In [][]string + cases := []struct { + In [][]string Out [][]string }{ {