Fix imports

This commit is contained in:
Frank Schroeder 2017-05-05 12:36:35 +02:00
parent 4f9b82d51b
commit b1e97baacb
No known key found for this signature in database
GPG Key ID: 4D65C6EAEC87DECD
4 changed files with 10 additions and 6 deletions

View File

@ -1,10 +1,11 @@
package command
import (
"github.com/hashicorp/consul/command/base"
"github.com/mitchellh/cli"
"strings"
"testing"
"github.com/hashicorp/consul/command/base"
"github.com/mitchellh/cli"
)
func TestEventCommand_implements(t *testing.T) {

View File

@ -1,10 +1,11 @@
package command
import (
"github.com/hashicorp/consul/command/base"
"github.com/mitchellh/cli"
"strings"
"testing"
"github.com/hashicorp/consul/command/base"
"github.com/mitchellh/cli"
)
func TestInfoCommand_implements(t *testing.T) {

View File

@ -1,10 +1,11 @@
package command
import (
"github.com/hashicorp/consul/command/base"
"github.com/mitchellh/cli"
"strings"
"testing"
"github.com/hashicorp/consul/command/base"
"github.com/mitchellh/cli"
)
func testLeaveCommand(t *testing.T) (*cli.MockUi, *LeaveCommand) {

View File

@ -2,6 +2,7 @@ package consul
import (
"fmt"
"github.com/armon/go-metrics"
"github.com/hashicorp/consul/consul/state"
"github.com/hashicorp/consul/consul/structs"