Merge pull request #5060 from stack72/f-lint-changes

Fixing some golint issues on the new validate command
This commit is contained in:
James Nugent 2016-02-08 17:58:17 -05:00
commit 1ff5f6fb0c
2 changed files with 4 additions and 2 deletions

View File

@ -2,8 +2,9 @@ package command
import ( import (
"fmt" "fmt"
"github.com/hashicorp/terraform/config"
"path/filepath" "path/filepath"
"github.com/hashicorp/terraform/config"
) )
// ValidateCommand is a Command implementation that validates the terraform files // ValidateCommand is a Command implementation that validates the terraform files

View File

@ -1,9 +1,10 @@
package command package command
import ( import (
"github.com/mitchellh/cli"
"strings" "strings"
"testing" "testing"
"github.com/mitchellh/cli"
) )
func setupTest(fixturepath string) (*cli.MockUi, int) { func setupTest(fixturepath string) (*cli.MockUi, int) {