diff --git a/command/validate.go b/command/validate.go index 925a78183..e0bc17971 100644 --- a/command/validate.go +++ b/command/validate.go @@ -2,8 +2,9 @@ package command import ( "fmt" - "github.com/hashicorp/terraform/config" "path/filepath" + + "github.com/hashicorp/terraform/config" ) // ValidateCommand is a Command implementation that validates the terraform files diff --git a/command/validate_test.go b/command/validate_test.go index 48d4d2506..de293eed9 100644 --- a/command/validate_test.go +++ b/command/validate_test.go @@ -1,9 +1,10 @@ package command import ( - "github.com/mitchellh/cli" "strings" "testing" + + "github.com/mitchellh/cli" ) func setupTest(fixturepath string) (*cli.MockUi, int) {