Merge pull request #5060 from stack72/f-lint-changes
Fixing some golint issues on the new validate command
This commit is contained in:
commit
1ff5f6fb0c
|
@ -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
|
||||
|
|
|
@ -1,9 +1,10 @@
|
|||
package command
|
||||
|
||||
import (
|
||||
"github.com/mitchellh/cli"
|
||||
"strings"
|
||||
"testing"
|
||||
|
||||
"github.com/mitchellh/cli"
|
||||
)
|
||||
|
||||
func setupTest(fixturepath string) (*cli.MockUi, int) {
|
||||
|
|
Loading…
Reference in New Issue