Skip to content

Commit

Permalink
Fix import formatting across code base
Browse files Browse the repository at this point in the history
  • Loading branch information
jen20 committed Apr 19, 2016
1 parent 233411e commit f2fef25
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 6 deletions.
2 changes: 1 addition & 1 deletion builtin/providers/datadog/resource_datadog_monitor.go
Original file line number Diff line number Diff line change
@@ -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"
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down
3 changes: 2 additions & 1 deletion communicator/ssh/password.go
Original file line number Diff line number Diff line change
@@ -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
Expand Down
3 changes: 2 additions & 1 deletion communicator/ssh/password_test.go
Original file line number Diff line number Diff line change
@@ -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) {
Expand Down

0 comments on commit f2fef25

Please sign in to comment.