Fix import formatting across code base

This commit is contained in:
James Nugent 2016-04-18 17:28:46 -07:00
parent 233411e391
commit f2fef2556a
6 changed files with 8 additions and 6 deletions

View File

@ -1,12 +1,12 @@
package datadog
import (
"encoding/json"
"fmt"
"log"
"strconv"
"strings"
"encoding/json"
"github.com/hashicorp/terraform/helper/schema"
"github.com/zorkian/go-datadog-api"
)

View File

@ -2,12 +2,12 @@ package github
import (
"fmt"
"os"
"testing"
"github.com/google/go-github/github"
"github.com/hashicorp/terraform/helper/resource"
"github.com/hashicorp/terraform/terraform"
"os"
)
func TestAccGithubMembership_basic(t *testing.T) {

View File

@ -2,12 +2,12 @@ package github
import (
"fmt"
"os"
"testing"
"github.com/google/go-github/github"
"github.com/hashicorp/terraform/helper/resource"
"github.com/hashicorp/terraform/terraform"
"os"
)
func TestAccGithubTeamMembership_basic(t *testing.T) {

View File

@ -2,13 +2,13 @@ package google
import (
"fmt"
"strings"
"testing"
"github.com/hashicorp/terraform/helper/acctest"
"github.com/hashicorp/terraform/helper/resource"
"github.com/hashicorp/terraform/terraform"
"google.golang.org/api/compute/v1"
"strings"
)
func TestAccComputeInstanceTemplate_basic(t *testing.T) {

View File

@ -1,8 +1,9 @@
package ssh
import (
"golang.org/x/crypto/ssh"
"log"
"golang.org/x/crypto/ssh"
)
// An implementation of ssh.KeyboardInteractiveChallenge that simply sends

View File

@ -1,9 +1,10 @@
package ssh
import (
"golang.org/x/crypto/ssh"
"reflect"
"testing"
"golang.org/x/crypto/ssh"
)
func TestPasswordKeyboardInteractive_Impl(t *testing.T) {