Merge pull request #4395 from stack72/gofmt_errors_2

Fix some gofmt errors in imports
This commit is contained in:
James Nugent 2015-12-19 11:47:01 -05:00
commit 27008ae898
2 changed files with 3 additions and 2 deletions

View File

@ -2,6 +2,8 @@ package aws
import ( import (
"fmt" "fmt"
"log"
"math/rand" "math/rand"
"testing" "testing"
"time" "time"
@ -12,7 +14,6 @@ import (
"github.com/aws/aws-sdk-go/aws" "github.com/aws/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go/aws/awserr" "github.com/aws/aws-sdk-go/aws/awserr"
"github.com/aws/aws-sdk-go/service/rds" "github.com/aws/aws-sdk-go/service/rds"
"log"
) )
func TestAccAWSDBInstance_basic(t *testing.T) { func TestAccAWSDBInstance_basic(t *testing.T) {

View File

@ -4,6 +4,7 @@ import (
"bytes" "bytes"
"fmt" "fmt"
"log" "log"
"strings"
"time" "time"
"github.com/hashicorp/terraform/helper/schema" "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/aws/awserr"
"github.com/aws/aws-sdk-go/service/dynamodb" "github.com/aws/aws-sdk-go/service/dynamodb"
"github.com/hashicorp/terraform/helper/hashcode" "github.com/hashicorp/terraform/helper/hashcode"
"strings"
) )
// Number of times to retry if a throttling-related exception occurs // Number of times to retry if a throttling-related exception occurs