From 1628f19bc1e72a0049c1326aa86fd13721dcd747 Mon Sep 17 00:00:00 2001 From: stack72 Date: Mon, 8 Feb 2016 22:04:24 +0000 Subject: [PATCH] Fixing some golint issues on the new validate command --- command/validate.go | 3 ++- command/validate_test.go | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) 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) {