From 244a75504e665dced50b7d5a01bb9da73fe4bbbe Mon Sep 17 00:00:00 2001 From: stack72 Date: Sat, 19 Dec 2015 16:42:10 +0000 Subject: [PATCH] More gofmt errors I'm afraid --- builtin/providers/aws/resource_aws_db_instance_test.go | 3 ++- builtin/providers/aws/resource_aws_dynamodb_table.go | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/builtin/providers/aws/resource_aws_db_instance_test.go b/builtin/providers/aws/resource_aws_db_instance_test.go index fa1e9e733..17e192271 100644 --- a/builtin/providers/aws/resource_aws_db_instance_test.go +++ b/builtin/providers/aws/resource_aws_db_instance_test.go @@ -2,6 +2,8 @@ package aws import ( "fmt" + "log" + "math/rand" "testing" "time" @@ -12,7 +14,6 @@ import ( "github.com/aws/aws-sdk-go/aws" "github.com/aws/aws-sdk-go/aws/awserr" "github.com/aws/aws-sdk-go/service/rds" - "log" ) func TestAccAWSDBInstance_basic(t *testing.T) { diff --git a/builtin/providers/aws/resource_aws_dynamodb_table.go b/builtin/providers/aws/resource_aws_dynamodb_table.go index c0a4f8c49..0606cde2e 100644 --- a/builtin/providers/aws/resource_aws_dynamodb_table.go +++ b/builtin/providers/aws/resource_aws_dynamodb_table.go @@ -4,6 +4,7 @@ import ( "bytes" "fmt" "log" + "strings" "time" "github.com/hashicorp/terraform/helper/schema" @@ -12,7 +13,6 @@ import ( "github.com/aws/aws-sdk-go/aws/awserr" "github.com/aws/aws-sdk-go/service/dynamodb" "github.com/hashicorp/terraform/helper/hashcode" - "strings" ) // Number of times to retry if a throttling-related exception occurs