Fix gofmt

This commit is contained in:
Justin Santa Barbara 2016-12-17 23:18:12 -05:00
parent 362e2cb33e
commit 72ec584033
2 changed files with 7 additions and 7 deletions

View File

@ -17,16 +17,16 @@ limitations under the License.
package cloudup
import (
"testing"
api "k8s.io/kops/pkg/apis/kops"
"os"
"testing"
)
func Test_FindCNIAssetFromEnvironmentVariable(t *testing.T) {
desiredCNIVersion := "https://storage.googleapis.com/kubernetes-release/network-plugins/cni-TEST-VERSION.tar.gz"
os.Setenv(ENV_VAR_CNI_VERSION_URL, desiredCNIVersion)
defer func(){
defer func() {
os.Unsetenv(ENV_VAR_CNI_VERSION_URL)
}()