From 3f750fb24b891eee4a104c7cc10b70509141d0ff Mon Sep 17 00:00:00 2001 From: Dan Ramich Date: Mon, 26 Aug 2019 14:49:17 -0700 Subject: [PATCH] goimports changes --- cmd/multiclusterapp_test.go | 2 +- cmd/prompt.go | 2 +- cmd/up.go | 2 +- main_test.go | 3 ++- 4 files changed, 5 insertions(+), 4 deletions(-) diff --git a/cmd/multiclusterapp_test.go b/cmd/multiclusterapp_test.go index 9781a290..ccc4b557 100644 --- a/cmd/multiclusterapp_test.go +++ b/cmd/multiclusterapp_test.go @@ -3,7 +3,7 @@ package cmd import ( "testing" - "github.com/rancher/types/client/management/v3" + client "github.com/rancher/types/client/management/v3" "github.com/stretchr/testify/assert" ) diff --git a/cmd/prompt.go b/cmd/prompt.go index 0660d3a3..dc727c66 100644 --- a/cmd/prompt.go +++ b/cmd/prompt.go @@ -3,7 +3,7 @@ package cmd import ( "fmt" - "github.com/rancher/cli/rancher_prompt" + rancherprompt "github.com/rancher/cli/rancher_prompt" "github.com/c-bata/go-prompt" "github.com/urfave/cli" diff --git a/cmd/up.go b/cmd/up.go index 5b405cb5..3ad39cc4 100644 --- a/cmd/up.go +++ b/cmd/up.go @@ -4,7 +4,7 @@ import ( "io/ioutil" "github.com/rancher/cli/cliclient" - "github.com/rancher/types/client/management/v3" + client "github.com/rancher/types/client/management/v3" "github.com/urfave/cli" ) diff --git a/main_test.go b/main_test.go index 633385e1..5bf6730a 100644 --- a/main_test.go +++ b/main_test.go @@ -1,8 +1,9 @@ package main import ( - "gopkg.in/check.v1" "testing" + + "gopkg.in/check.v1" ) // Hook up gocheck into the "go test" runner.